﻿	/*
    ----------------------------------- 
            方法变量    
                     
    Create Time : 2014-07-22
    Update Time : 2015-08-03
    Author      : Trueland Development Department
    -----------------------------------
*/
	/*
    ---------------------- 
            普通方法 
    ---------------------- 

    1 .opc()              // 透明度     - 传整数 50 代表 0.5   
    2 .pos(r)             // 定位方式 - 必须传参，r 代表relative || a 代表absolute ||  f 代表 fixed
    3 .font()             // 字体大小 - 默认12px 
    4 .align()            // 文本对齐 - 默认 center
    5 .lineH()            // 行高设置 - 默认 20px
   11 .arrow(r)           // 三角箭头 - 必须传参    l:向左箭头 | r:向右箭头 | t:向上箭头 | b:向下箭头
   12 .float()            // 快速浮动 - 默认为 left ||  left: 向左浮动   | right:向右浮动
   13 .fontC(d)           // 字大小写 - 比传参数 d 为 大写 s 为首字母大写
   14 .fontB()            // 字体粗细 - 默认加粗  fontB(100) 传100 就是 变细

   ----------------------
   CSS3 方法 
   ---------------------- 

   01 .borderR()          // 圆角设置 - 默认为 5px
   02 .linearG(red,blue)  // 线性渐变 - 两个颜色值 是开始到结束  目前支持 *上下* 渐变
   03 .bgFull             // 背景充满 - 背景等比例拉伸 使用 ：bgFull;
   04 .css3Tansition()    // 过度属性 - 默认两个值 前者是过渡动画时间 后者是过渡动画效果 使用 : .css3tansition(.4s,ease)
   

   //滤镜

   05 .filterBlur()       // 滤镜模糊 - 使用 ：.filterBlur(2px); 默认 5px
   06 .filterGrayscale()  // 滤镜灰度 - 使用 ：.filterGrayscale(100%); 默认100% ★注意参数 是 0%~100$; 100%代表全灰
   07 .filterSepia()      // 滤镜褐色 - 使用 ： .filterSepia(1); 默认1 ★注意参数 (同上)
   08 .filterBrightness() // 滤镜亮度 - 使用 ： .filterBrightness(10); 默认5 ★注意参数 10代表100% 5代表50%
   09 .filterHue()        // 滤镜色相 - 使用 ： .filterHue(180deg); 默认180deg ★注意参数 0deg~360deg
   10 .filterInvert()     // 滤镜反色 - 使用 ： .filterInvert(1); 默认1 ★注意参数 0.1~1 1代表100%
   11 .filterSaturate()   // 滤镜饱和 - 使用 ： .filterSaturate(5); 默认5 ★注意参数 5 代表 50%
   12 .filterContrast()   // 滤镜对比 - 使用 ： .filterContrast(1.5); 默认1.5 ★注意参数 1.5代表 15%
    
   ----------------------
        普通嵌套 
   ---------------------- 

   01 .vcenter            // 垂直水平居中
   02 .tHide              // 文本超出隐藏省略
   03 .blockFull          // 块状元素 宽高100%
   04 .block              // 块状元素 没有设置宽高
   05 .centerBlock        // 左右居中
   05 .clearfix           // 清除浮动

    -----------------------------------
*/
		
	.bgFull {
		background-position: center center;
		background-repeat: no-repeat;
		background-size: cover;
		-ms-behavior: url(css/cover.htc);
		behavior: url(css/cover.htc);
	}
	
	.vcenter {
		display: block;
		max-width: 100%;
		max-height: 100%;
		position: absolute;
		margin: auto;
		top: 0;
		right: 0;
		bottom: 0;
		left: 0;
	}
	
	.tHide {
		text-overflow: ellipsis;
		overflow: hidden;
		white-space: nowrap;
	}
	
	.blockFull {
		display: block;
		width: 100%;
		height: 100%;
		position: relative;
	}
	
	.block {
		display: block;
		position: relative;
	}
	
	.centerBlock {
		margin-left: auto;
		margin-right: auto;
	}
	
	.clearfix {
		clear: both;
	}
	
	.slick-slider {
		position: relative;
		display: block;
		box-sizing: border-box;
		-moz-box-sizing: border-box;
		-webkit-touch-callout: none;
		-webkit-user-select: none;
		-khtml-user-select: none;
		-moz-user-select: none;
		-ms-user-select: none;
		user-select: none;
		-ms-touch-action: pan-y;
		touch-action: pan-y;
		-webkit-tap-highlight-color: transparent;
	}
	
	.slick-list {
		position: relative;
		overflow: hidden;
		display: block;
		margin: 0;
		padding: 0;
	}
	
	.slick-list:focus {
		outline: none;
	}
	
	.slick-loading .slick-list {
		background: #ffffff url("../img/ajax-loader.gif") center center no-repeat;
	}
	
	.slick-list.dragging {
		cursor: pointer;
		cursor: hand;
	}
	
	.slick-slider .slick-track {
		-webkit-transform: translate3d(0, 0, 0);
		-moz-transform: translate3d(0, 0, 0);
		-ms-transform: translate3d(0, 0, 0);
		-o-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
	
	.slick-track {
		position: relative;
		left: 0;
		top: 0;
		display: block;
	}
	
	.slick-track:before,
	.slick-track:after {
		content: "";
		display: table;
	}
	
	.slick-track:after {
		clear: both;
	}
	
	.slick-loading .slick-track {
		visibility: hidden;
	}
	
	.slick-slide {
		float: left;
		height: 100%;
		min-height: 1px;
		display: none;
	}
	
	[dir="rtl"] .slick-slide {
		float: right;
	}
	
	.slick-slide img {
		display: block;
	}
	
	.slick-slide.slick-loading img {
		display: none;
	}
	
	.slick-slide.dragging img {
		pointer-events: none;
	}
	
	.slick-initialized .slick-slide {
		display: block;
	}
	
	.slick-loading .slick-slide {
		visibility: hidden;
	}
	
	.slick-vertical .slick-slide {
		display: block;
		height: auto;
		border: 1px solid transparent;
	}
	
	.slick-prev,
	.slick-next {
		z-index: 20;
		position: absolute;
		display: block;
		height: 60px;
		width: 30px;
		line-height: 0;
		font-size: 0;
		cursor: pointer;
		background: transparent;
		color: transparent;
		top: 50%;
		margin-top: -30px;
		padding: 0;
		border: none;
		outline: none;
		border: 1px solid red;
	}
	
	.slick-prev {
		left: 30px;
	}
	
	[dir="rtl"] .slick-prev {
		left: auto;
		right: 30px;
	}
	
	.slick-next {
		right: 30px;
	}
	
	[dir="rtl"] .slick-next {
		left: 30px;
		right: auto;
	}
	
	.slick-dots {
		position: absolute;
		bottom: 20px;
		height: auto;
		list-style: none;
		display: block;
		text-align: center;
		padding: 0;
		width: 100%;
		line-height: 0;
	}
	
	.slick-dots li {
		position: relative;
		display: inline-block;
		margin: 0 5px;
		padding: 0;
		cursor: pointer;
	}
	
	.slick-dots li button {
		border: 0;
		display: block;
		height: 10px;
		width: 10px;
		padding: 0;
		margin: 0;
		outline: none;
		line-height: 0;
		font-size: 0;
		cursor: pointer;
		background: #cccccc;
		border-radius: 0px;
	}
	
	.slick-dots li.slick-active button {
		background: #333333;
	}
	/*
	jQuery.mmenu CSS
*/
	/*
	jQuery.mmenu oncanvas CSS
*/
	
	.mm-hidden {
		display: none !important;
	}
	
	.mm-wrapper {
		overflow-x: hidden;
		position: relative;
	}
	
	.mm-menu,
	.mm-menu>.mm-panel {
		margin: 0;
		position: absolute;
		left: 0;
		right: 0;
		top: 0;
		bottom: 0;
		z-index: 0;
	}
	
	.mm-menu {
		box-sizing: border-box;
		background: inherit;
		display: block;
		overflow: hidden;
		padding: 0;
	}
	
	.mm-panel {
		-webkit-transition: -webkit-transform 0.4s ease;
		-moz-transition: -moz-transform 0.4s ease;
		-ms-transition: -ms-transform 0.4s ease;
		-o-transition: -o-transform 0.4s ease;
		transition: transform 0.4s ease;
		-webkit-transform: translate3d(100%, 0, 0);
		-moz-transform: translate3d(100%, 0, 0);
		-ms-transform: translate3d(100%, 0, 0);
		-o-transform: translate3d(100%, 0, 0);
		transform: translate3d(100%, 0, 0);
	}
	
	.mm-panel.mm-opened {
		-webkit-transform: translate3d(0%, 0, 0);
		-moz-transform: translate3d(0%, 0, 0);
		-ms-transform: translate3d(0%, 0, 0);
		-o-transform: translate3d(0%, 0, 0);
		transform: translate3d(0%, 0, 0);
	}
	
	.mm-panel.mm-subopened {
		-webkit-transform: translate3d(-30%, 0, 0);
		-moz-transform: translate3d(-30%, 0, 0);
		-ms-transform: translate3d(-30%, 0, 0);
		-o-transform: translate3d(-30%, 0, 0);
		transform: translate3d(-30%, 0, 0);
	}
	
	.mm-panel.mm-highest {
		z-index: 1;
	}
	
	.mm-menu>.mm-panel {
		background: inherit;
		border-color: inherit;
		-webkit-overflow-scrolling: touch;
		overflow: scroll;
		overflow-x: hidden;
		overflow-y: auto;
		box-sizing: border-box;
		padding: 0 20px;
	}
	
	.mm-menu>.mm-panel.mm-hasnavbar {
		padding-top: 40px;
	}
	
	.mm-menu>.mm-panel:before,
	.mm-menu>.mm-panel:after {
		content: '';
		display: block;
		height: 20px;
	}
	
	.mm-vertical .mm-panel {
		-webkit-transform: none !important;
		-moz-transform: none !important;
		-ms-transform: none !important;
		-o-transform: none !important;
		transform: none !important;
	}
	
	.mm-vertical .mm-listview .mm-panel,
	.mm-listview .mm-vertical .mm-panel {
		display: none;
		padding: 10px 0 10px 10px;
	}
	
	.mm-vertical .mm-listview .mm-panel .mm-listview>li:last-child:after,
	.mm-listview .mm-vertical .mm-panel .mm-listview>li:last-child:after {
		border-color: transparent;
	}
	
	.mm-vertical li.mm-opened>.mm-panel,
	li.mm-vertical.mm-opened>.mm-panel {
		display: block;
	}
	
	.mm-vertical .mm-listview>li>.mm-next,
	.mm-listview>li.mm-vertical>.mm-next {
		height: 40px;
		bottom: auto;
	}
	
	.mm-vertical .mm-listview>li>.mm-next:after,
	.mm-listview>li.mm-vertical>.mm-next:after {
		top: 16px;
		bottom: auto;
	}
	
	.mm-vertical .mm-listview>li.mm-opened>.mm-next:after,
	.mm-listview>li.mm-vertical.mm-opened>.mm-next:after {
		-webkit-transform: rotate(45deg);
		-moz-transform: rotate(45deg);
		-ms-transform: rotate(45deg);
		-o-transform: rotate(45deg);
		transform: rotate(45deg);
	}
	
	.mm-navbar {
		border-bottom: 1px solid;
		border-color: inherit;
		text-align: center;
		line-height: 20px;
		height: 40px;
		padding: 0 40px;
		margin: 0;
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
	}
	
	.mm-navbar>* {
		display: block;
		padding: 10px 0;
	}
	
	.mm-navbar a,
	.mm-navbar a:hover {
		text-decoration: none;
	}
	
	.mm-navbar .mm-title {
		text-overflow: ellipsis;
		white-space: nowrap;
		overflow: hidden;
	}
	
	.mm-navbar .mm-btn {
		box-sizing: border-box;
		width: 40px;
		height: 40px;
		position: absolute;
		top: 0;
		z-index: 1;
	}
	
	.mm-navbar .mm-btn:first-child {
		padding-left: 20px;
		left: 0;
	}
	
	.mm-navbar .mm-btn:last-child {
		text-align: right;
		padding-right: 20px;
		right: 0;
	}
	
	.mm-panel .mm-navbar {
		display: none;
	}
	
	.mm-panel.mm-hasnavbar .mm-navbar {
		display: block;
	}
	
	.mm-listview,
	.mm-listview>li {
		list-style: none;
		display: block;
		padding: 0;
		margin: 0;
	}
	
	.mm-listview {
		font: inherit;
		font-size: 14px;
		line-height: 20px;
	}
	
	.mm-listview a,
	.mm-listview a:hover {
		text-decoration: none;
	}
	
	.mm-listview>li {
		position: relative;
	}
	
	.mm-listview>li,
	.mm-listview>li:after,
	.mm-listview>li .mm-next,
	.mm-listview>li .mm-next:before {
		border-color: inherit;
	}
	
	.mm-listview>li>a,
	.mm-listview>li>span {
		text-overflow: ellipsis;
		white-space: nowrap;
		overflow: hidden;
		color: inherit;
		display: block;
		padding: 10px 10px 10px 20px;
		margin: 0;
	}
	
	.mm-listview>li>a.mm-arrow,
	.mm-listview>li>span.mm-arrow {
		padding-right: 50px;
	}
	
	.mm-listview>li:not(.mm-divider):after {
		content: '';
		border-bottom-width: 1px;
		border-bottom-style: solid;
		display: block;
		position: absolute;
		left: 0;
		right: 0;
		bottom: 0;
	}
	
	.mm-listview>li:not(.mm-divider):after {
		left: 20px;
	}
	
	.mm-listview .mm-next {
		background: rgba(3, 2, 1, 0);
		width: 50px;
		padding: 0;
		position: absolute;
		right: 0;
		top: 0;
		bottom: 0;
		z-index: 2;
	}
	
	.mm-listview .mm-next:before {
		content: '';
		border-left-width: 1px;
		border-left-style: solid;
		display: block;
		position: absolute;
		top: 0;
		bottom: 0;
		left: 0;
	}
	
	.mm-listview .mm-next+a,
	.mm-listview .mm-next+span {
		margin-right: 50px;
	}
	
	.mm-listview .mm-next.mm-fullsubopen {
		width: 100%;
	}
	
	.mm-listview .mm-next.mm-fullsubopen:before {
		border-left: none;
	}
	
	.mm-listview .mm-next.mm-fullsubopen+a,
	.mm-listview .mm-next.mm-fullsubopen+span {
		padding-right: 50px;
		margin-right: 0;
	}
	
	.mm-menu>.mm-panel>.mm-listview {
		margin: 20px -20px;
	}
	
	.mm-menu>.mm-panel>.mm-listview:first-child,
	.mm-menu>.mm-panel>.mm-navbar+.mm-listview {
		margin-top: -20px;
	}
	
	.mm-listview .mm-inset {
		list-style: inside disc;
		padding: 0 10px 15px 40px;
		margin: 0;
	}
	
	.mm-listview .mm-inset>li {
		padding: 5px 0;
	}
	
	.mm-listview .mm-divider {
		text-overflow: ellipsis;
		white-space: nowrap;
		overflow: hidden;
		font-size: 10px;
		text-transform: uppercase;
		text-indent: 20px;
		line-height: 25px;
	}
	
	.mm-listview .mm-spacer {
		padding-top: 40px;
	}
	
	.mm-listview .mm-spacer>.mm-next {
		top: 40px;
	}
	
	.mm-listview .mm-spacer.mm-divider {
		padding-top: 25px;
	}
	
	.mm-prev:before,
	.mm-next:after,
	.mm-arrow:after {
		content: '';
		border: 2px solid transparent;
		display: inline-block;
		width: 8px;
		height: 8px;
		margin: auto;
		position: absolute;
		top: 0;
		bottom: 0;
		-webkit-transform: rotate(-45deg);
		-moz-transform: rotate(-45deg);
		-ms-transform: rotate(-45deg);
		-o-transform: rotate(-45deg);
		transform: rotate(-45deg);
	}
	
	.mm-prev:before {
		border-right: none;
		border-bottom: none;
		left: 20px;
	}
	
	.mm-next:after,
	.mm-arrow:after {
		border-top: none;
		border-left: none;
		right: 20px;
	}
	
	.mm-menu {
		background: #f3f3f3;
		border-color: rgba(0, 0, 0, 0.1);
		color: rgba(0, 0, 0, 0.7);
	}
	
	.mm-menu .mm-navbar>*,
	.mm-menu .mm-navbar a {
		color: rgba(0, 0, 0, 0.3);
	}
	
	.mm-menu .mm-navbar .mm-btn:before,
	.mm-menu .mm-navbar .mm-btn:after {
		border-color: rgba(0, 0, 0, 0.3);
	}
	
	.mm-menu .mm-listview {
		border-color: rgba(0, 0, 0, 0.1);
	}
	
	.mm-menu .mm-listview>li .mm-next:after,
	.mm-menu .mm-listview>li .mm-arrow:after {
		border-color: rgba(0, 0, 0, 0.3);
	}
	
	.mm-menu .mm-listview>li.mm-selected>a:not(.mm-next),
	.mm-menu .mm-listview>li.mm-selected>span {
		background: rgba(255, 255, 255, 0.5);
	}
	
	.mm-menu.mm-vertical .mm-listview>li.mm-opened>a.mm-next,
	.mm-menu.mm-vertical .mm-listview>li.mm-opened>.mm-panel,
	.mm-menu .mm-listview>li.mm-opened.mm-vertical>a.mm-next,
	.mm-menu .mm-listview>li.mm-opened.mm-vertical>.mm-panel {
		background: rgba(0, 0, 0, 0.05);
	}
	
	.mm-menu .mm-divider {
		background: rgba(0, 0, 0, 0.05);
	}
	/*
	jQuery.mmenu offcanvas addon CSS
*/
	
	.mm-page {
		box-sizing: border-box;
		position: relative;
	}
	
	.mm-slideout {
		-webkit-transition: -webkit-transform 0.4s ease;
		-ms-transition: -ms-transform 0.4s ease;
		transition: transform 0.4s ease;
	}
	
	html.mm-opened {
		overflow: hidden;
		position: relative;
	}
	
	html.mm-opened body {
		overflow: hidden;
	}
	
	html.mm-background .mm-page {
		background: inherit;
	}
	
	#mm-blocker {
		background: rgba(3, 2, 1, 0);
		display: none;
		width: 100%;
		height: 100%;
		position: fixed;
		top: 0;
		left: 0;
		z-index: 999999;
	}
	
	html.mm-opened #mm-blocker,
	html.mm-blocking #mm-blocker {
		display: block;
	}
	
	.mm-menu.mm-offcanvas {
		display: none;
		position: fixed;
	}
	
	.mm-menu.mm-current {
		display: block;
	}
	
	.mm-menu {
		width: 80%;
		min-width: 140px;
		max-width: 440px;
	}
	
	html.mm-opening .mm-slideout {
		-webkit-transform: translate(80%, 0);
		-moz-transform: translate(80%, 0);
		-ms-transform: translate(80%, 0);
		-o-transform: translate(80%, 0);
		transform: translate(80%, 0);
	}
	
	@media all and (max-width: 175px) {
		html.mm-opening .mm-slideout {
			-webkit-transform: translate(140px, 0);
			-moz-transform: translate(140px, 0);
			-ms-transform: translate(140px, 0);
			-o-transform: translate(140px, 0);
			transform: translate(140px, 0);
		}
	}
	
	@media all and (min-width: 550px) {
		html.mm-opening .mm-slideout {
			-webkit-transform: translate(440px, 0);
			-moz-transform: translate(440px, 0);
			-ms-transform: translate(440px, 0);
			-o-transform: translate(440px, 0);
			transform: translate(440px, 0);
		}
	}
	/*
	jQuery.mmenu autoHeight addon CSS
*/
	
	.mm-menu.mm-top.mm-autoheight,
	.mm-menu.mm-bottom.mm-autoheight {
		max-height: 80%;
	}
	
	.mm-menu.mm-top.mm-autoheight.mm-fullscreen,
	.mm-menu.mm-bottom.mm-autoheight.mm-fullscreen {
		max-height: 100%;
	}
	
	.mm-menu.mm-measureheight>.mm-panel {
		bottom: auto !important;
		height: auto !important;
	}
	/*
	jQuery.mmenu counters addon CSS
*/
	
	em.mm-counter {
		font: inherit;
		font-size: 14px;
		font-style: normal;
		text-indent: 0;
		line-height: 20px;
		display: block;
		margin-top: -10px;
		position: absolute;
		right: 45px;
		top: 50%;
	}
	
	em.mm-counter+a.mm-next {
		width: 90px;
	}
	
	em.mm-counter+a.mm-next+a,
	em.mm-counter+a.mm-next+span {
		margin-right: 90px;
	}
	
	em.mm-counter+a.mm-fullsubopen {
		padding-left: 0;
	}
	
	.mm-vertical>.mm-counter {
		top: 12px;
		margin-top: 0;
	}
	
	.mm-vertical.mm-spacer>.mm-counter {
		margin-top: 40px;
	}
	
	.mm-nosubresults>.mm-counter {
		display: none;
	}
	
	.mm-menu em.mm-counter {
		color: rgba(0, 0, 0, 0.3);
	}
	/*
	jQuery.mmenu dividers addon CSS
*/
	
	.mm-divider>span {
		text-overflow: ellipsis;
		white-space: nowrap;
		overflow: hidden;
		padding: 0;
		line-height: 25px;
	}
	
	.mm-divider.mm-opened a.mm-next:after {
		-webkit-transform: rotate(45deg);
		-moz-transform: rotate(45deg);
		-ms-transform: rotate(45deg);
		-o-transform: rotate(45deg);
		transform: rotate(45deg);
	}
	
	.mm-collapsed:not(.mm-uncollapsed) {
		display: none;
	}
	
	.mm-fixeddivider {
		background: inherit;
		display: none;
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		z-index: 2;
		-webkit-transform: translate3d(0, 0, 0);
		-moz-transform: translate3d(0, 0, 0);
		-ms-transform: translate3d(0, 0, 0);
		-o-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
	
	.mm-fixeddivider:after {
		content: none !important;
		display: none !important;
	}
	
	.mm-hasdividers .mm-fixeddivider {
		display: block;
	}
	
	.mm-menu .mm-fixeddivider span {
		background: rgba(0, 0, 0, 0.05);
	}
	/*
	jQuery.mmenu dragOpen addon CSS
*/
	
	html.mm-opened.mm-dragging .mm-menu,
	html.mm-opened.mm-dragging .mm-page,
	html.mm-opened.mm-dragging .mm-fixed-top,
	html.mm-opened.mm-dragging .mm-fixed-bottom,
	html.mm-opened.mm-dragging #mm-blocker {
		-webkit-transition-duration: 0s;
		-moz-transition-duration: 0s;
		-ms-transition-duration: 0s;
		-o-transition-duration: 0s;
		transition-duration: 0s;
	}
	/*
	jQuery.mmenu iconpanels addon CSS
*/
	
	.mm-iconpanel .mm-panel {
		-webkit-transition-property: -webkit-transform, left, right;
		-moz-transition-property: -moz-transform, left, right;
		-ms-transition-property: -ms-transform, left, right;
		-o-transition-property: -o-transform, left, right;
		transition-property: transform, left, right;
	}
	
	.mm-iconpanel .mm-panel.mm-opened {
		border-left: 1px solid;
		border-color: inherit;
	}
	
	.mm-iconpanel .mm-panel.mm-subopened {
		overflow-y: hidden;
		left: -40px;
		right: 40px;
		-webkit-transform: translate3d(0, 0, 0);
		-moz-transform: translate3d(0, 0, 0);
		-ms-transform: translate3d(0, 0, 0);
		-o-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
	
	.mm-iconpanel .mm-panel.mm-iconpanel-0 {
		left: 0px;
	}
	
	.mm-iconpanel .mm-panel.mm-iconpanel-1 {
		left: 40px;
	}
	
	.mm-iconpanel .mm-panel.mm-iconpanel-2 {
		left: 80px;
	}
	
	.mm-iconpanel .mm-panel.mm-iconpanel-3 {
		left: 120px;
	}
	
	.mm-iconpanel .mm-panel.mm-iconpanel-4 {
		left: 160px;
	}
	
	.mm-iconpanel .mm-panel.mm-iconpanel-5 {
		left: 200px;
	}
	
	.mm-iconpanel .mm-panel.mm-iconpanel-6 {
		left: 240px;
	}
	
	.mm-subblocker {
		background: inherit;
		opacity: 0;
		display: block;
		-webkit-transition: opacity 0.4s ease;
		-moz-transition: opacity 0.4s ease;
		-ms-transition: opacity 0.4s ease;
		-o-transition: opacity 0.4s ease;
		transition: opacity 0.4s ease;
	}
	
	.mm-subopened .mm-subblocker {
		opacity: 0.6;
		position: absolute;
		top: 0;
		right: 0;
		bottom: -100000px;
		left: 0;
		z-index: 3;
	}
	/*
	jQuery.mmenu navbars addon CSS
*/
	
	.mm-menu>.mm-navbar {
		background: inherit;
		padding: 0;
		z-index: 3;
		-webkit-transform: translate3d(0, 0, 0);
		-moz-transform: translate3d(0, 0, 0);
		-ms-transform: translate3d(0, 0, 0);
		-o-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
	
	.mm-navbar-bottom {
		border-top-width: 1px;
		border-top-style: solid;
		border-bottom: none;
		top: auto;
		bottom: 0;
	}
	
	.mm-navbar-top~.mm-navbar-top {
		border-bottom: none;
	}
	
	.mm-navbar-bottom~.mm-navbar-bottom {
		border-top: none;
	}
	
	.mm-navbar.mm-hasbtns {
		padding: 0 40px;
	}
	
	.mm-close:after {
		content: 'x';
	}
	
	.mm-navbar[class*="mm-navbar-content-"]>* {
		box-sizing: border-box;
		display: block;
		float: left;
	}
	
	.mm-navbar>.mm-breadcrumbs {
		text-overflow: ellipsis;
		white-space: nowrap;
		overflow: hidden;
		-webkit-overflow-scrolling: touch;
		overflow-x: auto;
		text-align: left;
		padding: 0 0 0 17px;
	}
	
	.mm-navbar>.mm-breadcrumbs>* {
		display: inline-block;
		padding: 10px 3px;
	}
	
	.mm-navbar>.mm-breadcrumbs>a {
		text-decoration: underline;
	}
	
	.mm-navbar.mm-hasbtns .mm-breadcrumbs {
		margin-left: -40px;
	}
	
	.mm-navbar.mm-hasbtns .mm-btn:not(.mm-hidden)+.mm-breadcrumbs {
		margin-left: 0;
		padding-left: 0;
	}
	
	.mm-navbar-top-1 {
		top: 0px;
	}
	
	.mm-hasnavbar-top-1 .mm-panel {
		top: 40px;
	}
	
	.mm-hasnavbar-top-1 .mm-indexer {
		top: 50px;
	}
	
	.mm-hasnavbar-top-1 .mm-fixeddivider {
		top: 40px;
	}
	
	.mm-navbar-top-2 {
		top: 40px;
	}
	
	.mm-hasnavbar-top-2 .mm-panel {
		top: 80px;
	}
	
	.mm-hasnavbar-top-2 .mm-indexer {
		top: 90px;
	}
	
	.mm-hasnavbar-top-2 .mm-fixeddivider {
		top: 80px;
	}
	
	.mm-navbar-top-3 {
		top: 80px;
	}
	
	.mm-hasnavbar-top-3 .mm-panel {
		top: 120px;
	}
	
	.mm-hasnavbar-top-3 .mm-indexer {
		top: 130px;
	}
	
	.mm-hasnavbar-top-3 .mm-fixeddivider {
		top: 120px;
	}
	
	.mm-navbar-top-4 {
		top: 120px;
	}
	
	.mm-hasnavbar-top-4 .mm-panel {
		top: 160px;
	}
	
	.mm-hasnavbar-top-4 .mm-indexer {
		top: 170px;
	}
	
	.mm-hasnavbar-top-4 .mm-fixeddivider {
		top: 160px;
	}
	
	.mm-navbar-bottom-1 {
		bottom: 0px;
	}
	
	.mm-hasnavbar-bottom-1 .mm-panel {
		bottom: 40px;
	}
	
	.mm-hasnavbar-bottom-1 .mm-indexer {
		bottom: 50px;
	}
	
	.mm-navbar-bottom-2 {
		bottom: 40px;
	}
	
	.mm-hasnavbar-bottom-2 .mm-panel {
		bottom: 80px;
	}
	
	.mm-hasnavbar-bottom-2 .mm-indexer {
		bottom: 90px;
	}
	
	.mm-navbar-bottom-3 {
		bottom: 80px;
	}
	
	.mm-hasnavbar-bottom-3 .mm-panel {
		bottom: 120px;
	}
	
	.mm-hasnavbar-bottom-3 .mm-indexer {
		bottom: 130px;
	}
	
	.mm-navbar-bottom-4 {
		bottom: 120px;
	}
	
	.mm-hasnavbar-bottom-4 .mm-panel {
		bottom: 160px;
	}
	
	.mm-hasnavbar-bottom-4 .mm-indexer {
		bottom: 170px;
	}
	
	.mm-navbar-size-2 {
		height: 80px;
	}
	
	.mm-navbar-size-3 {
		height: 120px;
	}
	
	.mm-navbar-size-4 {
		height: 160px;
	}
	
	.mm-navbar-content-2>* {
		width: 50%;
	}
	
	.mm-navbar-content-3>* {
		width: 33.33%;
	}
	
	.mm-navbar-content-4>* {
		width: 25%;
	}
	
	.mm-navbar-content-5>* {
		width: 20%;
	}
	
	.mm-navbar-content-6>* {
		width: 16.67%;
	}
	/*
	jQuery.mmenu searchfield addon CSS
*/
	
	.mm-search,
	.mm-search input {
		box-sizing: border-box;
	}
	
	.mm-search {
		height: 40px;
		padding: 7px 10px 0 10px;
	}
	
	.mm-search input {
		border: none;
		border-radius: 26px;
		font: inherit;
		font-size: 14px;
		line-height: 26px;
		outline: none;
		display: block;
		width: 100%;
		height: 26px;
		margin: 0;
		padding: 0 10px;
	}
	
	.mm-search input::-ms-clear {
		display: none;
	}
	
	.mm-panel>.mm-search {
		width: 100%;
		position: absolute;
		top: 0;
		left: 0;
	}
	
	.mm-panel.mm-hassearch {
		padding-top: 40px;
	}
	
	.mm-panel.mm-hassearch.mm-hasnavbar {
		padding-top: 80px;
	}
	
	.mm-panel.mm-hassearch.mm-hasnavbar .mm-search {
		top: 40px;
	}
	
	.mm-noresultsmsg {
		text-align: center;
		font-size: 21px;
		display: none;
		padding: 40px 0;
	}
	
	.mm-noresults .mm-noresultsmsg {
		display: block;
	}
	
	.mm-noresults .mm-indexer {
		display: none !important;
	}
	
	li.mm-nosubresults>a.mm-next {
		display: none;
	}
	
	li.mm-nosubresults>a.mm-next+a,
	li.mm-nosubresults>a.mm-next+span {
		padding-right: 10px;
	}
	
	.mm-menu .mm-search input {
		background: rgba(0, 0, 0, 0.05);
		color: rgba(0, 0, 0, 0.7);
	}
	
	.mm-menu .mm-noresultsmsg {
		color: rgba(0, 0, 0, 0.3);
	}
	/*
	jQuery.mmenu sectionIndexer addon CSS
*/
	
	.mm-indexer {
		background: inherit;
		text-align: center;
		font-size: 12px;
		box-sizing: border-box;
		width: 20px;
		position: absolute;
		top: 10px;
		bottom: 10px;
		right: -100px;
		z-index: 3;
		-webkit-transition: right 0.4s ease;
		-moz-transition: right 0.4s ease;
		-ms-transition: right 0.4s ease;
		-o-transition: right 0.4s ease;
		transition: right 0.4s ease;
		-webkit-transform: translate3d(0, 0, 0);
		-moz-transform: translate3d(0, 0, 0);
		-ms-transform: translate3d(0, 0, 0);
		-o-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
	
	.mm-indexer a {
		text-decoration: none;
		display: block;
		height: 3.85%;
	}
	
	.mm-indexer~.mm-panel.mm-hasindexer {
		padding-right: 40px;
	}
	
	.mm-hasindexer .mm-indexer {
		right: 0;
	}
	
	.mm-hasindexer .mm-fixeddivider {
		right: 20px;
	}
	
	.mm-menu .mm-indexer a {
		color: rgba(0, 0, 0, 0.3);
	}
	/*
	jQuery.mmenu toggles addon CSS
*/
	
	input.mm-toggle,
	input.mm-check {
		position: absolute;
		left: -10000px;
	}
	
	label.mm-toggle,
	label.mm-check {
		margin: 0;
		position: absolute;
		top: 50%;
		z-index: 2;
	}
	
	label.mm-toggle:before,
	label.mm-check:before {
		content: '';
		display: block;
	}
	
	label.mm-toggle {
		border-radius: 30px;
		width: 50px;
		height: 30px;
		margin-top: -15px;
	}
	
	label.mm-toggle:before {
		border-radius: 30px;
		width: 28px;
		height: 28px;
		margin: 1px;
	}
	
	input.mm-toggle:checked~label.mm-toggle:before {
		float: right;
	}
	
	label.mm-check {
		width: 30px;
		height: 30px;
		margin-top: -15px;
	}
	
	label.mm-check:before {
		border-left: 3px solid;
		border-bottom: 3px solid;
		width: 40%;
		height: 20%;
		margin: 25% 0 0 20%;
		opacity: 0.1;
		-webkit-transform: rotate(-45deg);
		-moz-transform: rotate(-45deg);
		-ms-transform: rotate(-45deg);
		-o-transform: rotate(-45deg);
		transform: rotate(-45deg);
	}
	
	input.mm-check:checked~label.mm-check:before {
		opacity: 1;
	}
	
	li.mm-vertical label.mm-toggle,
	li.mm-vertical label.mm-check {
		bottom: auto;
		margin-top: 0;
	}
	
	li.mm-vertical label.mm-toggle {
		top: 5px;
	}
	
	li.mm-vertical label.mm-check {
		top: 5px;
	}
	
	label.mm-toggle,
	label.mm-check {
		right: 20px;
	}
	
	label.mm-toggle+a,
	label.mm-toggle+span {
		padding-right: 80px;
	}
	
	label.mm-check+a,
	label.mm-check+span {
		padding-right: 60px;
	}
	
	a.mm-next+label.mm-toggle,
	a.mm-next+label.mm-check {
		right: 60px;
	}
	
	a.mm-next+label.mm-toggle+a,
	a.mm-next+label.mm-toggle+span,
	a.mm-next+label.mm-check+a,
	a.mm-next+label.mm-check+span {
		margin-right: 50px;
	}
	
	a.mm-next+label.mm-toggle+a,
	a.mm-next+label.mm-toggle+span {
		padding-right: 70px;
	}
	
	a.mm-next+label.mm-check+a,
	a.mm-next+label.mm-check+span {
		padding-right: 50px;
	}
	
	em.mm-counter+a.mm-next+label.mm-toggle,
	em.mm-counter+a.mm-next+label.mm-check {
		right: 100px;
	}
	
	em.mm-counter+a.mm-next+label.mm-toggle+a,
	em.mm-counter+a.mm-next+label.mm-toggle+span,
	em.mm-counter+a.mm-next+label.mm-check+a,
	em.mm-counter+a.mm-next+label.mm-check+span {
		margin-right: 90px;
	}
	
	.mm-menu label.mm-toggle {
		background: rgba(0, 0, 0, 0.1);
	}
	
	.mm-menu label.mm-toggle:before {
		background: #f3f3f3;
	}
	
	.mm-menu input.mm-toggle:checked~label.mm-toggle {
		background: #4bd963;
	}
	
	.mm-menu label.mm-check:before {
		border-color: rgba(0, 0, 0, 0.7);
	}
	/*
	jQuery.mmenu borderstyle extension CSS
*/
	
	.mm-menu.mm-border-none .mm-listview>li:after,
	.mm-listview.mm-border-none>li:after {
		content: none;
	}
	
	.mm-menu.mm-border-full .mm-listview>li:after,
	.mm-listview.mm-border-full>li:after {
		left: 0 !important;
	}
	/*
	jQuery.mmenu effects extension CSS
*/
	
	html.mm-effect-zoom-menu .mm-menu.mm-offcanvas {
		-webkit-transition: -webkit-transform 0.4s ease;
		-moz-transition: -moz-transform 0.4s ease;
		-ms-transition: -ms-transform 0.4s ease;
		-o-transition: -o-transform 0.4s ease;
		transition: transform 0.4s ease;
	}
	
	html.mm-effect-zoom-menu.mm-opened .mm-menu.mm-effect-zoom-menu {
		-webkit-transform: scale(0.7, 0.7) translate3d(-30%, 0, 0);
		-moz-transform: scale(0.7, 0.7) translate3d(-30%, 0, 0);
		-ms-transform: scale(0.7, 0.7) translate3d(-30%, 0, 0);
		-o-transform: scale(0.7, 0.7) translate3d(-30%, 0, 0);
		transform: scale(0.7, 0.7) translate3d(-30%, 0, 0);
		-webkit-transform-origin: left center;
		-moz-transform-origin: left center;
		-ms-transform-origin: left center;
		-o-transform-origin: left center;
		transform-origin: left center;
	}
	
	html.mm-effect-zoom-menu.mm-opening .mm-menu.mm-effect-zoom-menu {
		-webkit-transform: scale(1, 1) translate3d(0%, 0, 0);
		-moz-transform: scale(1, 1) translate3d(0%, 0, 0);
		-ms-transform: scale(1, 1) translate3d(0%, 0, 0);
		-o-transform: scale(1, 1) translate3d(0%, 0, 0);
		transform: scale(1, 1) translate3d(0%, 0, 0);
	}
	
	html.mm-effect-zoom-menu.mm-right.mm-opened .mm-menu.mm-offcanvas {
		-webkit-transform: scale(0.7, 0.7) translate3d(30%, 0, 0);
		-moz-transform: scale(0.7, 0.7) translate3d(30%, 0, 0);
		-ms-transform: scale(0.7, 0.7) translate3d(30%, 0, 0);
		-o-transform: scale(0.7, 0.7) translate3d(30%, 0, 0);
		transform: scale(0.7, 0.7) translate3d(30%, 0, 0);
		-webkit-transform-origin: right center;
		-moz-transform-origin: right center;
		-ms-transform-origin: right center;
		-o-transform-origin: right center;
		transform-origin: right center;
	}
	
	html.mm-effect-zoom-menu.mm-right.mm-opening .mm-menu.mm-effect-zoom-menu {
		-webkit-transform: scale(1, 1) translate3d(0%, 0, 0);
		-moz-transform: scale(1, 1) translate3d(0%, 0, 0);
		-ms-transform: scale(1, 1) translate3d(0%, 0, 0);
		-o-transform: scale(1, 1) translate3d(0%, 0, 0);
		transform: scale(1, 1) translate3d(0%, 0, 0);
	}
	
	html.mm-effect-slide-menu .mm-menu.mm-effect-slide-menu {
		-webkit-transition: -webkit-transform 0.4s ease;
		-moz-transition: -moz-transform 0.4s ease;
		-ms-transition: -ms-transform 0.4s ease;
		-o-transition: -o-transform 0.4s ease;
		transition: transform 0.4s ease;
	}
	
	html.mm-effect-slide-menu.mm-opened .mm-menu.mm-effect-slide-menu {
		-webkit-transform: translate3d(-30%, 0, 0);
		-moz-transform: translate3d(-30%, 0, 0);
		-ms-transform: translate3d(-30%, 0, 0);
		-o-transform: translate3d(-30%, 0, 0);
		transform: translate3d(-30%, 0, 0);
	}
	
	html.mm-effect-slide-menu.mm-opening .mm-menu.mm-effect-slide-menu {
		-webkit-transform: translate3d(0%, 0, 0);
		-moz-transform: translate3d(0%, 0, 0);
		-ms-transform: translate3d(0%, 0, 0);
		-o-transform: translate3d(0%, 0, 0);
		transform: translate3d(0%, 0, 0);
	}
	
	html.mm-effect-slide-menu.mm-right.mm-opened .mm-menu.mm-effect-slide-menu {
		-webkit-transform: translate3d(30%, 0, 0);
		-moz-transform: translate3d(30%, 0, 0);
		-ms-transform: translate3d(30%, 0, 0);
		-o-transform: translate3d(30%, 0, 0);
		transform: translate3d(30%, 0, 0);
	}
	
	html.mm-effect-slide-menu.mm-right.mm-opening .mm-menu.mm-effect-slide-menu {
		-webkit-transform: translate3d(0%, 0, 0);
		-moz-transform: translate3d(0%, 0, 0);
		-ms-transform: translate3d(0%, 0, 0);
		-o-transform: translate3d(0%, 0, 0);
		transform: translate3d(0%, 0, 0);
	}
	
	html.mm-effect-fade-menu .mm-menu.mm-effect-fade-menu {
		opacity: 0;
		-webkit-transition: opacity 0.4s ease;
		-moz-transition: opacity 0.4s ease;
		-ms-transition: opacity 0.4s ease;
		-o-transition: opacity 0.4s ease;
		transition: opacity 0.4s ease;
	}
	
	html.mm-effect-fade-menu.mm-opening .mm-menu.mm-effect-fade-menu {
		opacity: 1;
	}
	
	.mm-menu.mm-effect-zoom-panels .mm-panel {
		-webkit-transform: scale(1.5, 1.5) translate3d(100%, 0, 0);
		-moz-transform: scale(1.5, 1.5) translate3d(100%, 0, 0);
		-ms-transform: scale(1.5, 1.5) translate3d(100%, 0, 0);
		-o-transform: scale(1.5, 1.5) translate3d(100%, 0, 0);
		transform: scale(1.5, 1.5) translate3d(100%, 0, 0);
		-webkit-transform-origin: left center;
		-moz-transform-origin: left center;
		-ms-transform-origin: left center;
		-o-transform-origin: left center;
		transform-origin: left center;
	}
	
	.mm-menu.mm-effect-zoom-panels .mm-panel.mm-opened {
		-webkit-transform: scale(1, 1) translate3d(0%, 0, 0);
		-moz-transform: scale(1, 1) translate3d(0%, 0, 0);
		-ms-transform: scale(1, 1) translate3d(0%, 0, 0);
		-o-transform: scale(1, 1) translate3d(0%, 0, 0);
		transform: scale(1, 1) translate3d(0%, 0, 0);
	}
	
	.mm-menu.mm-effect-zoom-panels .mm-panel.mm-opened.mm-subopened {
		-webkit-transform: scale(0.7, 0.7) translate3d(-30%, 0, 0);
		-moz-transform: scale(0.7, 0.7) translate3d(-30%, 0, 0);
		-ms-transform: scale(0.7, 0.7) translate3d(-30%, 0, 0);
		-o-transform: scale(0.7, 0.7) translate3d(-30%, 0, 0);
		transform: scale(0.7, 0.7) translate3d(-30%, 0, 0);
	}
	
	.mm-menu.mm-effect-slide-panels-0 .mm-panel.mm-subopened {
		-webkit-transform: translate3d(0, 0, 0);
		-moz-transform: translate3d(0, 0, 0);
		-ms-transform: translate3d(0, 0, 0);
		-o-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
	
	.mm-menu.mm-effect-slide-panels-100 .mm-panel.mm-subopened {
		-webkit-transform: translate3d(-100%, 0, 0);
		-moz-transform: translate3d(-100%, 0, 0);
		-ms-transform: translate3d(-100%, 0, 0);
		-o-transform: translate3d(-100%, 0, 0);
		transform: translate3d(-100%, 0, 0);
	}
	
	html.mm-effect-slide-listitems .mm-menu.mm-effect-slide-listitems .mm-listview>li {
		-webkit-transition: -webkit-transform 0.4s ease;
		-moz-transition: -moz-transform 0.4s ease;
		-ms-transition: -ms-transform 0.4s ease;
		-o-transition: -o-transform 0.4s ease;
		transition: transform 0.4s ease;
		-webkit-transform: translate3d(100%, 0, 0);
		-moz-transform: translate3d(100%, 0, 0);
		-ms-transform: translate3d(100%, 0, 0);
		-o-transform: translate3d(100%, 0, 0);
		transform: translate3d(100%, 0, 0);
	}
	
	html.mm-effect-slide-listitems .mm-menu.mm-effect-slide-listitems .mm-listview>li:nth-child(1) {
		-webkit-transition-delay: 100ms;
		-moz-transition-delay: 100ms;
		-ms-transition-delay: 100ms;
		-o-transition-delay: 100ms;
		transition-delay: 100ms;
	}
	
	html.mm-effect-slide-listitems .mm-menu.mm-effect-slide-listitems .mm-listview>li:nth-child(2) {
		-webkit-transition-delay: 200ms;
		-moz-transition-delay: 200ms;
		-ms-transition-delay: 200ms;
		-o-transition-delay: 200ms;
		transition-delay: 200ms;
	}
	
	html.mm-effect-slide-listitems .mm-menu.mm-effect-slide-listitems .mm-listview>li:nth-child(3) {
		-webkit-transition-delay: 300ms;
		-moz-transition-delay: 300ms;
		-ms-transition-delay: 300ms;
		-o-transition-delay: 300ms;
		transition-delay: 300ms;
	}
	
	html.mm-effect-slide-listitems .mm-menu.mm-effect-slide-listitems .mm-listview>li:nth-child(4) {
		-webkit-transition-delay: 400ms;
		-moz-transition-delay: 400ms;
		-ms-transition-delay: 400ms;
		-o-transition-delay: 400ms;
		transition-delay: 400ms;
	}
	
	html.mm-effect-slide-listitems .mm-menu.mm-effect-slide-listitems .mm-listview>li:nth-child(5) {
		-webkit-transition-delay: 500ms;
		-moz-transition-delay: 500ms;
		-ms-transition-delay: 500ms;
		-o-transition-delay: 500ms;
		transition-delay: 500ms;
	}
	
	html.mm-effect-slide-listitems .mm-menu.mm-effect-slide-listitems .mm-listview>li:nth-child(6) {
		-webkit-transition-delay: 600ms;
		-moz-transition-delay: 600ms;
		-ms-transition-delay: 600ms;
		-o-transition-delay: 600ms;
		transition-delay: 600ms;
	}
	
	html.mm-effect-slide-listitems .mm-menu.mm-effect-slide-listitems .mm-listview>li:nth-child(7) {
		-webkit-transition-delay: 700ms;
		-moz-transition-delay: 700ms;
		-ms-transition-delay: 700ms;
		-o-transition-delay: 700ms;
		transition-delay: 700ms;
	}
	
	html.mm-effect-slide-listitems .mm-menu.mm-effect-slide-listitems .mm-listview>li:nth-child(8) {
		-webkit-transition-delay: 800ms;
		-moz-transition-delay: 800ms;
		-ms-transition-delay: 800ms;
		-o-transition-delay: 800ms;
		transition-delay: 800ms;
	}
	
	html.mm-effect-slide-listitems .mm-menu.mm-effect-slide-listitems .mm-listview>li:nth-child(9) {
		-webkit-transition-delay: 900ms;
		-moz-transition-delay: 900ms;
		-ms-transition-delay: 900ms;
		-o-transition-delay: 900ms;
		transition-delay: 900ms;
	}
	
	html.mm-effect-slide-listitems.mm-opening .mm-menu.mm-effect-slide-listitems .mm-panel.mm-opened .mm-listview>li {
		-webkit-transform: translate3d(0, 0, 0);
		-moz-transform: translate3d(0, 0, 0);
		-ms-transform: translate3d(0, 0, 0);
		-o-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
	/*
	jQuery.mmenu fullscreen extension CSS
*/
	
	.mm-menu.mm-fullscreen {
		width: 100%;
		min-width: 140px;
		max-width: 10000px;
	}
	
	html.mm-opening.mm-fullscreen .mm-slideout {
		-webkit-transform: translate(100%, 0);
		-moz-transform: translate(100%, 0);
		-ms-transform: translate(100%, 0);
		-o-transform: translate(100%, 0);
		transform: translate(100%, 0);
	}
	
	@media all and (max-width: 140px) {
		html.mm-opening.mm-fullscreen .mm-slideout {
			-webkit-transform: translate(140px, 0);
			-moz-transform: translate(140px, 0);
			-ms-transform: translate(140px, 0);
			-o-transform: translate(140px, 0);
			transform: translate(140px, 0);
		}
	}
	
	@media all and (min-width: 10000px) {
		html.mm-opening.mm-fullscreen .mm-slideout {
			-webkit-transform: translate(10000px, 0);
			-moz-transform: translate(10000px, 0);
			-ms-transform: translate(10000px, 0);
			-o-transform: translate(10000px, 0);
			transform: translate(10000px, 0);
		}
	}
	
	html.mm-right.mm-opening.mm-fullscreen .mm-slideout {
		-webkit-transform: translate(-100%, 0);
		-moz-transform: translate(-100%, 0);
		-ms-transform: translate(-100%, 0);
		-o-transform: translate(-100%, 0);
		transform: translate(-100%, 0);
	}
	
	@media all and (max-width: 140px) {
		html.mm-right.mm-opening.mm-fullscreen .mm-slideout {
			-webkit-transform: translate(-140px, 0);
			-moz-transform: translate(-140px, 0);
			-ms-transform: translate(-140px, 0);
			-o-transform: translate(-140px, 0);
			transform: translate(-140px, 0);
		}
	}
	
	@media all and (min-width: 10000px) {
		html.mm-right.mm-opening.mm-fullscreen .mm-slideout {
			-webkit-transform: translate(-10000px, 0);
			-moz-transform: translate(-10000px, 0);
			-ms-transform: translate(-10000px, 0);
			-o-transform: translate(-10000px, 0);
			transform: translate(-10000px, 0);
		}
	}
	
	.mm-menu.mm-fullscreen.mm-top,
	.mm-menu.mm-fullscreen.mm-bottom {
		height: 100%;
		min-height: 140px;
		max-height: 10000px;
	}
	
	html.mm-opened.mm-fullscreen .mm-page {
		box-shadow: none !important;
	}
	/*
	jQuery.mmenu multiline extension CSS
*/
	
	.mm-menu.mm-multiline .mm-listview>li>a,
	.mm-menu.mm-multiline .mm-listview>li>span,
	.mm-listview.mm-multiline>li .mm-listview>li.mm-multiline>a,
	.mm-listview.mm-multiline>li .mm-listview>li.mm-multiline>span {
		text-overflow: clip;
		white-space: normal;
	}
	/*
	jQuery.mmenu pageshadow extension CSS
*/
	
	.mm-menu.mm-pageshadow:after {
		content: "";
		display: block;
		width: 20px;
		height: 120%;
		position: absolute;
		left: 100%;
		top: -10%;
		z-index: 99;
	}
	
	.mm-menu.mm-pageshadow.mm-right:after {
		left: auto;
		right: 100%;
	}
	
	.mm-menu.mm-pageshadow.mm-next:after,
	.mm-menu.mm-pageshadow.mm-front:after {
		content: none;
		display: none;
	}
	
	.mm-menu.mm-pageshadow:after {
		box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
	}
	/*
	jQuery.mmenu position extension CSS
*/
	
	.mm-menu.mm-top,
	.mm-menu.mm-bottom {
		width: 100%;
		min-width: 100%;
		max-width: 100%;
	}
	
	.mm-menu.mm-right {
		left: auto;
		right: 0;
	}
	
	.mm-menu.mm-bottom {
		top: auto;
		bottom: 0;
	}
	
	html.mm-right.mm-opening .mm-slideout {
		-webkit-transform: translate(-80%, 0);
		-moz-transform: translate(-80%, 0);
		-ms-transform: translate(-80%, 0);
		-o-transform: translate(-80%, 0);
		transform: translate(-80%, 0);
	}
	
	@media all and (max-width: 175px) {
		html.mm-right.mm-opening .mm-slideout {
			-webkit-transform: translate(-140px, 0);
			-moz-transform: translate(-140px, 0);
			-ms-transform: translate(-140px, 0);
			-o-transform: translate(-140px, 0);
			transform: translate(-140px, 0);
		}
	}
	
	@media all and (min-width: 550px) {
		html.mm-right.mm-opening .mm-slideout {
			-webkit-transform: translate(-440px, 0);
			-moz-transform: translate(-440px, 0);
			-ms-transform: translate(-440px, 0);
			-o-transform: translate(-440px, 0);
			transform: translate(-440px, 0);
		}
	}
	/*
	jQuery.mmenu z-position extension CSS
*/
	
	html.mm-front .mm-slideout {
		-webkit-transform: none !important;
		-moz-transform: none !important;
		-ms-transform: none !important;
		-o-transform: none !important;
		transform: none !important;
		z-index: 0 !important;
	}
	
	.mm-menu.mm-front {
		z-index: 1;
	}
	
	.mm-menu.mm-front,
	.mm-menu.mm-next {
		-webkit-transition: -webkit-transform 0.4s ease;
		-ms-transition: -ms-transform 0.4s ease;
		transition: transform 0.4s ease;
		-webkit-transform: translate3d(-100%, 0, 0);
		-moz-transform: translate3d(-100%, 0, 0);
		-ms-transform: translate3d(-100%, 0, 0);
		-o-transform: translate3d(-100%, 0, 0);
		transform: translate3d(-100%, 0, 0);
	}
	
	.mm-menu.mm-front.mm-right,
	.mm-menu.mm-next.mm-right {
		-webkit-transform: translate3d(100%, 0, 0);
		-moz-transform: translate3d(100%, 0, 0);
		-ms-transform: translate3d(100%, 0, 0);
		-o-transform: translate3d(100%, 0, 0);
		transform: translate3d(100%, 0, 0);
	}
	
	.mm-menu.mm-top {
		-webkit-transform: translate3d(0, -100%, 0);
		-moz-transform: translate3d(0, -100%, 0);
		-ms-transform: translate3d(0, -100%, 0);
		-o-transform: translate3d(0, -100%, 0);
		transform: translate3d(0, -100%, 0);
	}
	
	.mm-menu.mm-bottom {
		-webkit-transform: translate3d(0, 100%, 0);
		-moz-transform: translate3d(0, 100%, 0);
		-ms-transform: translate3d(0, 100%, 0);
		-o-transform: translate3d(0, 100%, 0);
		transform: translate3d(0, 100%, 0);
	}
	
	html.mm-opening .mm-menu.mm-front,
	html.mm-opening .mm-menu.mm-next {
		-webkit-transform: translate3d(0, 0, 0);
		-moz-transform: translate3d(0, 0, 0);
		-ms-transform: translate3d(0, 0, 0);
		-o-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
	
	.mm-menu.mm-top,
	.mm-menu.mm-bottom {
		height: 80%;
		min-height: 140px;
		max-height: 880px;
	}
	/*
	jQuery.mmenu themes extension CSS
*/
	
	.mm-menu.mm-theme-dark {
		background: #333333;
		border-color: rgba(0, 0, 0, 0.15);
		color: rgba(255, 255, 255, 0.8);
	}
	
	.mm-menu.mm-theme-dark .mm-navbar>*,
	.mm-menu.mm-theme-dark .mm-navbar a {
		color: rgba(255, 255, 255, 0.4);
	}
	
	.mm-menu.mm-theme-dark .mm-navbar .mm-btn:before,
	.mm-menu.mm-theme-dark .mm-navbar .mm-btn:after {
		border-color: rgba(255, 255, 255, 0.4);
	}
	
	.mm-menu.mm-theme-dark .mm-listview {
		border-color: rgba(0, 0, 0, 0.15);
	}
	
	.mm-menu.mm-theme-dark .mm-listview>li .mm-next:after,
	.mm-menu.mm-theme-dark .mm-listview>li .mm-arrow:after {
		border-color: rgba(255, 255, 255, 0.4);
	}
	
	.mm-menu.mm-theme-dark .mm-listview>li.mm-selected>a:not(.mm-next),
	.mm-menu.mm-theme-dark .mm-listview>li.mm-selected>span {
		background: rgba(0, 0, 0, 0.1);
	}
	
	.mm-menu.mm-theme-dark.mm-vertical .mm-listview>li.mm-opened>a.mm-next,
	.mm-menu.mm-theme-dark.mm-vertical .mm-listview>li.mm-opened>.mm-panel,
	.mm-menu.mm-theme-dark .mm-listview>li.mm-opened.mm-vertical>a.mm-next,
	.mm-menu.mm-theme-dark .mm-listview>li.mm-opened.mm-vertical>.mm-panel {
		background: rgba(255, 255, 255, 0.05);
	}
	
	.mm-menu.mm-theme-dark .mm-divider {
		background: rgba(255, 255, 255, 0.05);
	}
	
	.mm-menu.mm-theme-dark label.mm-check:before {
		border-color: rgba(255, 255, 255, 0.8);
	}
	
	.mm-menu.mm-theme-dark em.mm-counter {
		color: rgba(255, 255, 255, 0.4);
	}
	
	.mm-menu.mm-theme-dark .mm-fixeddivider span {
		background: rgba(255, 255, 255, 0.05);
	}
	
	.mm-menu.mm-pageshadow.mm-theme-dark:after {
		box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
	}
	
	.mm-menu.mm-theme-dark .mm-search input {
		background: rgba(255, 255, 255, 0.3);
		color: rgba(255, 255, 255, 0.8);
	}
	
	.mm-menu.mm-theme-dark .mm-noresultsmsg {
		color: rgba(255, 255, 255, 0.4);
	}
	
	.mm-menu.mm-theme-dark .mm-indexer a {
		color: rgba(255, 255, 255, 0.4);
	}
	
	.mm-menu.mm-theme-dark label.mm-toggle {
		background: rgba(0, 0, 0, 0.15);
	}
	
	.mm-menu.mm-theme-dark label.mm-toggle:before {
		background: #333333;
	}
	
	.mm-menu.mm-theme-dark input.mm-toggle:checked~label.mm-toggle {
		background: #4bd963;
	}
	
	.mm-menu.mm-theme-white {
		background: white;
		border-color: rgba(0, 0, 0, 0.1);
		color: rgba(0, 0, 0, 0.6);
	}
	
	.mm-menu.mm-theme-white .mm-navbar>*,
	.mm-menu.mm-theme-white .mm-navbar a {
		color: rgba(0, 0, 0, 0.3);
	}
	
	.mm-menu.mm-theme-white .mm-navbar .mm-btn:before,
	.mm-menu.mm-theme-white .mm-navbar .mm-btn:after {
		border-color: rgba(0, 0, 0, 0.3);
	}
	
	.mm-menu.mm-theme-white .mm-listview {
		border-color: rgba(0, 0, 0, 0.1);
	}
	
	.mm-menu.mm-theme-white .mm-listview>li .mm-next:after,
	.mm-menu.mm-theme-white .mm-listview>li .mm-arrow:after {
		border-color: rgba(0, 0, 0, 0.3);
	}
	
	.mm-menu.mm-theme-white .mm-listview>li.mm-selected>a:not(.mm-next),
	.mm-menu.mm-theme-white .mm-listview>li.mm-selected>span {
		background: rgba(0, 0, 0, 0.05);
	}
	
	.mm-menu.mm-theme-white.mm-vertical .mm-listview>li.mm-opened>a.mm-next,
	.mm-menu.mm-theme-white.mm-vertical .mm-listview>li.mm-opened>.mm-panel,
	.mm-menu.mm-theme-white .mm-listview>li.mm-opened.mm-vertical>a.mm-next,
	.mm-menu.mm-theme-white .mm-listview>li.mm-opened.mm-vertical>.mm-panel {
		background: rgba(0, 0, 0, 0.03);
	}
	
	.mm-menu.mm-theme-white .mm-divider {
		background: rgba(0, 0, 0, 0.03);
	}
	
	.mm-menu.mm-theme-white label.mm-check:before {
		border-color: rgba(0, 0, 0, 0.6);
	}
	
	.mm-menu.mm-theme-white em.mm-counter {
		color: rgba(0, 0, 0, 0.3);
	}
	
	.mm-menu.mm-theme-white .mm-fixeddivider span {
		background: rgba(0, 0, 0, 0.03);
	}
	
	.mm-menu.mm-pageshadow.mm-theme-white:after {
		box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
	}
	
	.mm-menu.mm-theme-white .mm-search input {
		background: rgba(0, 0, 0, 0.05);
		color: rgba(0, 0, 0, 0.6);
	}
	
	.mm-menu.mm-theme-white .mm-noresultsmsg {
		color: rgba(0, 0, 0, 0.3);
	}
	
	.mm-menu.mm-theme-white .mm-indexer a {
		color: rgba(0, 0, 0, 0.3);
	}
	
	.mm-menu.mm-theme-white label.mm-toggle {
		background: rgba(0, 0, 0, 0.1);
	}
	
	.mm-menu.mm-theme-white label.mm-toggle:before {
		background: white;
	}
	
	.mm-menu.mm-theme-white input.mm-toggle:checked~label.mm-toggle {
		background: #4bd963;
	}
	
	.mm-menu.mm-theme-black {
		background: black;
		border-color: rgba(255, 255, 255, 0.2);
		color: rgba(255, 255, 255, 0.6);
	}
	
	.mm-menu.mm-theme-black .mm-navbar>*,
	.mm-menu.mm-theme-black .mm-navbar a {
		color: rgba(255, 255, 255, 0.4);
	}
	
	.mm-menu.mm-theme-black .mm-navbar .mm-btn:before,
	.mm-menu.mm-theme-black .mm-navbar .mm-btn:after {
		border-color: rgba(255, 255, 255, 0.4);
	}
	
	.mm-menu.mm-theme-black .mm-listview {
		border-color: rgba(255, 255, 255, 0.2);
	}
	
	.mm-menu.mm-theme-black .mm-listview>li .mm-next:after,
	.mm-menu.mm-theme-black .mm-listview>li .mm-arrow:after {
		border-color: rgba(255, 255, 255, 0.4);
	}
	
	.mm-menu.mm-theme-black .mm-listview>li.mm-selected>a:not(.mm-next),
	.mm-menu.mm-theme-black .mm-listview>li.mm-selected>span {
		background: rgba(255, 255, 255, 0.3);
	}
	
	.mm-menu.mm-theme-black.mm-vertical .mm-listview>li.mm-opened>a.mm-next,
	.mm-menu.mm-theme-black.mm-vertical .mm-listview>li.mm-opened>.mm-panel,
	.mm-menu.mm-theme-black .mm-listview>li.mm-opened.mm-vertical>a.mm-next,
	.mm-menu.mm-theme-black .mm-listview>li.mm-opened.mm-vertical>.mm-panel {
		background: rgba(255, 255, 255, 0.2);
	}
	
	.mm-menu.mm-theme-black .mm-divider {
		background: rgba(255, 255, 255, 0.2);
	}
	
	.mm-menu.mm-theme-black label.mm-check:before {
		border-color: rgba(255, 255, 255, 0.6);
	}
	
	.mm-menu.mm-theme-black em.mm-counter {
		color: rgba(255, 255, 255, 0.4);
	}
	
	.mm-menu.mm-theme-black .mm-fixeddivider span {
		background: rgba(255, 255, 255, 0.2);
	}
	
	.mm-menu.mm-pageshadow.mm-theme-black:after {
		content: none;
		display: none;
	}
	
	.mm-menu.mm-theme-black .mm-search input {
		background: rgba(255, 255, 255, 0.3);
		color: rgba(255, 255, 255, 0.6);
	}
	
	.mm-menu.mm-theme-black .mm-noresultsmsg {
		color: rgba(255, 255, 255, 0.4);
	}
	
	.mm-menu.mm-theme-black .mm-indexer a {
		color: rgba(255, 255, 255, 0.4);
	}
	
	.mm-menu.mm-theme-black label.mm-toggle {
		background: rgba(255, 255, 255, 0.2);
	}
	
	.mm-menu.mm-theme-black label.mm-toggle:before {
		background: black;
	}
	
	.mm-menu.mm-theme-black input.mm-toggle:checked~label.mm-toggle {
		background: #4bd963;
	}
	/*
	jQuery.mmenu tileview extension CSS
*/
	
	.mm-menu.mm-tileview .mm-listview:after,
	.mm-menu .mm-tileview.mm-listview:after {
		content: '';
		display: block;
		clear: both;
	}
	
	.mm-menu.mm-tileview .mm-listview>li,
	.mm-menu .mm-tileview.mm-listview>li {
		width: 50%;
		height: 0;
		padding: 50% 0 0 0;
		float: left;
		position: relative;
	}
	
	.mm-menu.mm-tileview .mm-listview>li:after,
	.mm-menu .mm-tileview.mm-listview>li:after {
		left: 0;
		top: 0;
		border-right-width: 1px;
		border-right-style: solid;
		z-index: -1;
	}
	
	.mm-menu.mm-tileview .mm-listview>li.mm-tile-xs,
	.mm-menu .mm-tileview.mm-listview>li.mm-tile-xs {
		width: 12.5%;
		padding-top: 12.5%;
	}
	
	.mm-menu.mm-tileview .mm-listview>li.mm-tile-s,
	.mm-menu .mm-tileview.mm-listview>li.mm-tile-s {
		width: 25%;
		padding-top: 25%;
	}
	
	.mm-menu.mm-tileview .mm-listview>li.mm-tile-l,
	.mm-menu .mm-tileview.mm-listview>li.mm-tile-l {
		width: 75%;
		padding-top: 75%;
	}
	
	.mm-menu.mm-tileview .mm-listview>li.mm-tile-xl,
	.mm-menu .mm-tileview.mm-listview>li.mm-tile-xl {
		width: 100%;
		padding-top: 100%;
	}
	
	.mm-menu.mm-tileview .mm-listview>li>a,
	.mm-menu.mm-tileview .mm-listview>li>span,
	.mm-menu .mm-tileview.mm-listview>li>a,
	.mm-menu .mm-tileview.mm-listview>li>span {
		line-height: 1px;
		text-align: center;
		padding: 50% 10px 0 10px;
		margin: 0;
		position: absolute;
		top: 0;
		right: 1px;
		bottom: 1px;
		left: 0;
	}
	
	.mm-menu.mm-tileview .mm-listview>li>.mm-next,
	.mm-menu .mm-tileview.mm-listview>li>.mm-next {
		width: auto;
	}
	
	.mm-menu.mm-tileview .mm-listview>li>.mm-next:before,
	.mm-menu.mm-tileview .mm-listview>li>.mm-next:after,
	.mm-menu .mm-tileview.mm-listview>li>.mm-next:before,
	.mm-menu .mm-tileview.mm-listview>li>.mm-next:after {
		content: none;
		display: none;
	}
	
	.mm-menu.mm-tileview .mm-panel {
		padding-left: 0;
		padding-right: 0;
	}
	
	.mm-menu.mm-tileview .mm-panel:after {
		content: none;
		display: none;
	}
	
	.mm-menu.mm-tileview .mm-listview {
		margin: 0;
	}
	
	@font-face {
		font-family: "BEBAS_";
		src: url("../fonts/BEBAS_.svg");
		src: url("../fonts/BEBAS_.eot");
		src: url("../fonts/BEBAS_.otf");
		src: url("../fonts/BEBAS_.ttf");
		src: url("../fonts/BEBAS_.woff");
	}
	
	body {
		max-width: 1920px;
		margin-left: auto;
		margin-right: auto;
	}
	
	.container {
		padding-right: 15px;
		padding-left: 15px;
		margin-right: auto;
		margin-left: auto;
	}
	
	@media (min-width: 992px) {
		.container {
			width: 100%;
		}
	}
	
	@media (min-width: 1129px) {
		.container {
			width: 1024px;
		}
	}
	
	@media (min-width: 1310px) {
		.container {
			width: 1310px;
		}
	}
	
	img {
		max-width: 100%;
	}
	
	#swta {
		float: left;
		z-index: 999;
		position: fixed !important;
		top: 280px;
		position: absolute;
		top: expression(offsetParent.scrollTop+200);
		left: 10px;
	}
	
	.return_top {
		position: fixed;
		right: 0;
		bottom: 20px;
		width: 86px;
	}
	
	.return_top a {
		display: block;
		width: 86px;
		height: 78px;
		margin-bottom: 3px;
		background: #043e88;
		position: relative;
	}
	
	.return_top a .con {
		position: absolute;
		right: 86px;
		bottom: 0;
		background-color: #032554;
		transform: translateX(165px);
		opacity: 0;
		transition: all .5s;
	}
	
	.return_top a .con span {
		color: #fff;
		text-align: center;
		display: block;
		height: 78px;
		line-height: 78px;
		width: 165px;
		font-size: 18px;
	}
	
	.return_top a:hover {
		background: #032554;
	}
	
	.return_top a:hover .con {
		transform: translateX(0);
		opacity: 1;
	}
	
	@media (max-width: 1024px) {
		.return_top {
			display: none;
		}
		#swta {
			display: none;
		}
	}
	
	.header {
		z-index: 99;
		position: absolute;
		position: fixed;
		left: 0;
		top: 0;
		width: 100%;
		padding: 0 0 0 2%;
		height: 90px;
		background: rgba(4, 57, 131, 0.75);
		border-bottom: 1px solid #31568b;
	}
	
	.header .logo {
		display: table;
		width: 203px;
		height: 38px;
		float: left;
		line-height: 0;
		margin-top: 25px;
	}
	
	.header .nav {
		display: table;
		float: left;
		margin-left: 15%;
	}
	
	.header .nav>ul>li {
		float: left;
		line-height: 90px;
		margin: 0 5px;
		padding: 0 25px;
		text-align: center;
	}
	
	@media only screen and (min-width: 1024px) and (max-width: 1175px) {
		.header .nav>ul>li {
			float: left;
			line-height: 90px;
			margin: 0 5px;
			padding: 0 15px;
			text-align: center;
		}
	}
	
	.header .nav>ul>li>a {
		position: relative;
		display: block;
		color: #ffffff;
		font-size: 15px;
	}
	
	.header .nav>ul>li>a:before {
		display: none;
		content: "";
		position: absolute;
		left: 0;
		bottom: 0;
		width: 100%;
		height: 3px;
		border-bottom: 3px solid #e60012;
	}
	
	.header .nav>ul>li .navbox {
		display: none;
		position: absolute;
		left: 0;
		top: 100%;
		background: #fcfeff;
		width: 100%;
		text-align: left;
		padding: 20px 0 30px;
	}
	
	.header .nav>ul>li .navbox h3 {
		color: #e60012;
		font-size: 18px;
		line-height: 20px;
	}
	
	.header .nav>ul>li .navbox ol {
		margin-top: 10px;
		width: 100%;
	}
	
	.header .nav>ul>li .navbox ol li {
		margin-top: 20px;
		float: left;
		width: 50%;
		padding-right: 20px;
	}
	
	.header .nav>ul>li .navbox ol li span {
		display: block;
		color: #000000;
		font-size: 15px;
		padding-left: 20px;
		line-height: 20px;
		position: relative;
	}
	
	.header .nav>ul>li .navbox ol li span:before {
		content: "";
		position: absolute;
		left: 0;
		top: 6px;
		width: 5px;
		height: 9px;
		background: url(../img/icon-l1.png) no-repeat center center;
	}
	
	.header .nav>ul>li .navbox ol li span:hover a {
		color: #e60012;
	}
	
	.header .nav>ul>li .navbox ol li>div {
		margin-top: 15px;
		min-height: 54px;
	}
	
	.header .nav>ul>li .navbox ol li>div a {
		line-height: 24px;
		display: block;
		float: left;
		color: #727373;
		font-size: 15px;
		margin-left: 20px;
	}
	
	.header .nav>ul>li .navbox ol li>div a:hover {
		color: #e60012;
	}
	
	.header .nav>ul>li .navbox2 .left {
		float: left;
		width: 60%;
		border-right: 1px solid #e3e3e3;
		min-height: 210px;
	}
	
	.header .nav>ul>li .navbox2 .right {
		float: right;
	}
	
	.header .nav>ul>li .navbox2 .right a {
		display: block;
		width: 366px;
		height: 179px;
	}
	
	.header .nav>ul>li .navbox2 .right p {
		text-align: center;
		line-height: 20px;
		color: #000000;
		font-size: 18px;
		margin-top: 10px;
	}
	
	.header .nav>ul>li .navbox3 .left ol li {
		width: 33.33333333%;
	}
	
	.header .nav>ul>li.cur,
	.header .nav>ul>li:hover {
		background: url(../img/nav_hover.png) no-repeat center top;
	}
	
	.header .nav>ul>li.cur a:before,
	.header .nav>ul>li:hover a:before {
		display: block;
	}
	
	.header .search {
		float: right;
		margin-right: 38px;
		display: table;
		padding-top: 32px;
	}
	
	.header .search a {
		display: block;
		width: 27px;
		height: 27px;
	}
	
	.header .navbtn {
		position: absolute;
		right: 15px;
		top: 50%;
		width: 4%;
		margin-top: -2%;
		overflow: hidden;
		z-index: 999;
		line-height: 0;
		display: none;
	}
	
	.header .language {
		float: right;
		width: 99px;
		height: 90px;
		position: relative;
	}
	
	.header .language .top {
		/*border-left: 1px solid #31568b;*/
		text-align: center;
		height: 90px;
		line-height: 90px;
	}
	
	.header .language .top .current {
		text-overflow: ellipsis;
		overflow: hidden;
		white-space: nowrap;
		font-size: 14px;
		display: inline-block;
		cursor: pointer;
		color: #ffffff;
	}
	
	.header .language .top i {
		display: inline-block;
		background: url(../img/icon1.png) no-repeat center center;
		width: 7px;
		height: 4px;
		position: relative;
		top: -47%;
		margin-left: 6px;
	}
	
	.header .language .content {
		border-left: 1px solid #31568b;
		text-align: center;
		display: none;
		z-index: 999;
		position: absolute;
		left: 0;
		top: 100%;
		width: 100%;
		font-size: 14px;
		padding: 10px;
		background: rgba(4, 57, 131, 0.75);
	}
	
	.header .language .content a {
		color: #fff;
		display: block;
		line-height: 24px;
	}
	
	.header .language .content a:hover {
		color: #f08927;
	}
	
	@media (max-width: 1600px) {
		.header .nav {
			margin-left: 10%;
		}
		.header .nav ul li {
			margin: 0;
		}
	}
	
	@media (max-width: 1440px) {
		.header .nav {
			margin-left: 5%;
		}
	}
	
	@media (max-width: 1366px) {
		.header .nav {
			margin-left: 2%;
		}
	}
	
	@media (max-width: 1024px) {
		.header {
			position: relative;
			background: #032554;
			height: auto;
			padding-left: 15px;
			padding-top: 15px;
			padding-bottom: 15px;
		}
		.header .logo {
			margin-top: 0;
			width: 20%;
			height: auto;
		}
		.header .nav {
			display: none;
		}
		.header .language {
			display: none;
		}
		.header .search {
			display: none;
		}
		.header .navbtn {
			display: block;
		}
	}
	
	@media (max-width: 414px) {
		.header .logo {
			width: 26%;
		}
		.header .navbtn {
			width: 7%;
			margin-top: -3.5%;
		}
	}
	
	.fixed-head {
		z-index: 999;
		position: fixed;
		top: 0px;
		left: 0px;
		width: 100%;
		/*background: #fff;*/
		transition: All .4s ease;
		-webkit-transition: All .4s ease;
		-moz-transition: All .4s ease;
		-o-transition: All .4s ease;
		-webkit-animation: headerFix 1s ease 1;
		animation: headerFix 1s ease 1;
	}
	
	@-webkit-keyframes headerFix {
		from {
			-webkit-transform: translateY(-100%);
		}
		to {
			-webkit-transform: translateY(0);
		}
	}
	
	@keyframes headerFix {
		from {
			transform: translateY(-100%);
		}
		to {
			transform: translateY(0);
		}
	}
	
	.footer .footer_nav {
		padding: 35px 0;
		background: #112543;
	}
	
	.footer .footer_nav .left {
		width: 74%;
	}
	
	.footer .footer_nav .left ul li {
		float: left;
	}
	
	.footer .footer_nav .left ul li span {
		padding: 0 26px;
		display: block;
		color: #ffffff;
		font-size: 14px;
		position: relative;
	}
	
	.footer .footer_nav .left ul li span:before {
		content: "";
		position: absolute;
		left: 0;
		top: 6px;
		width: 1px;
		height: 9px;
		background: #2b394e;
	}
	
	.footer .footer_nav .left ul li div {
		margin-top: 20px;
		padding-left: 23px;
	}
	
	.footer .footer_nav .left ul li div a {
		display: block;
		color: #8799b2;
		font-size: 12px;
		line-height: 28px;
	}
	
	.footer .footer_nav .left ul li:first-child span {
		padding-left: 0;
	}
	
	.footer .footer_nav .left ul li:first-child span:before {
		display: none;
	}
	
	.footer .footer_nav .left ul li:first-child div {
		padding-left: 0;
	}
	
	.footer .footer_nav .right {
		width: 25%;
		padding-left: 3%;
		padding-bottom: 2%;
		background: url(../img/bg4.jpg) repeat-y left top;
	}
	
	.footer .footer_nav .right h3 {
		color: #afb6c1;
		font-size: 22px;
		font-weight: normal;
	}
	
	.footer .footer_nav .right .text {
		margin-top: 18px;
		color: #ffffff;
		font-size: 15px;
		line-height: 28px;		
	}
	.footer .footer_nav .right .text a{
		color:#FFFFFF;
	}
	
	.footer .footer_nav .right .dh {
		margin-top: 18px;
		color: #ffffff;
		font-size: 32px;
		font-family: arial;
		font-weight: bold;
		background: url(../img/dh.png) no-repeat left center;
		padding-left: 42px;
	}
	
	.footer .footer_nav .right .fx {
		margin-top: 24px;
	}
	
	.footer .footer_nav .right .fx a {
		cursor: pointer;
		display: block;
		width: 45px;
		height: 45px;
		float: left;
		margin-right: 22px;
		position: relative;
	}
	
	.footer .footer_nav .right .fx a span {
		position: absolute;
		right: -200px;
		top: -16px;
		width: 190px;
		height: 180px;
		display: none;
	}
	
	.footer .footer_nav .right .fx a:hover span {
		display: block;
	}
	
	.footer .footer_bottom {
		background: #091c38;
		padding: 20px 0;
		text-align: center;
	}
	
	.footer .footer_bottom .links {
		font-size: 14px;
	}
	
	.footer .footer_bottom .links span {
		color: #ffffff;
	}
	
	.footer .footer_bottom .links a {
		color: #8799b2;
		display: inline-block;
		margin: 0 5px;
	}
	
	.footer .footer_bottom .banquan {
		margin-top: 10px;
		color: #8799b2;
	}
	
	.footer .footer_bottom .banquan a {
		color: #8799b2;
		display: inline-block;
		margin: 0 5px;
	}
	
	.footer .footer_bottom .banquan span {
		color: #8799b2;
		display: inline-block;
		margin-left: 10px;
	}
	
	@media (max-width: 1024px) {
		.footer .footer_nav {
			display: none;
		}
	}
	
	@media (max-width: 480px) {
		.footer .footer_bottom {
			text-align: left;
		}
		.footer .footer_bottom .links span {
			display: block;
			margin-bottom: 5px;
		}
		.footer .footer_bottom .links a {
			display: block;
			margin-left: 0;
			margin-right: 6px;
			float: left;
		}
		.footer .footer_bottom .banquan {
			text-align: left;
		}
		.footer .footer_bottom .banquan a {
			display: none;
		}
		.footer .footer_bottom .banquan span {
			margin-left: 0;
		}
	}
	
	.banner_con {
		position: relative;
	}
	
	.banner_con .icon_btn {
		display: block;
		width: 1.40625%;
		margin: 0 auto;
		position: absolute;
		left: 50%;
		margin-left: -0.703125%;
		bottom: 8%;
		z-index: 9;
	}
	
	.banner {
		position: relative;
		z-index: 8;
		width: 100%;
	}
	
	.banner img {
		width: 100%;
	}
	
	.banner .slick-prev,
	.banner .slick-next {
		width: 60px;
		height: 86px;
		border: none;
		margin-top: -43px;
	}
	
	.banner .slick-prev {
		background: url(../img/prev.png) no-repeat center center;
		left: 0;
	}
	
	.banner .slick-next {
		background: url(../img/next.png) no-repeat center center;
		right: 0;
	}
	
	.banner .slick-dots {
		bottom: 25px;
	}
	
	.banner .slick-dots li button {
		width: 10px;
		height: 10px;
		margin: 0 2px;
		border-radius: 50%;
		background: rgba(255, 255, 255, 0.5);
	}
	
	.banner .slick-dots li.slick-active button {
		background: #fff;
	}
	
	@media (max-width: 1024px) {
		.banner .slick-prev,
		.banner .slick-next {
			width: 40px;
			height: 57px;
			margin-top: -28.5px;
			background-size: 100% 100%;
		}
	}
	
	@media (max-width: 640px) {
		.banner .slick-prev,
		.banner .slick-next {
			width: 25px;
			height: 36px;
			margin-top: -18px;
		}
		.banner .slick-dots {
			bottom: 15px;
		}
		.banner .slick-dots li {
			margin: 0 3px;
		}
		.banner .slick-dots li button {
			width: 6px;
			height: 6px;
			margin: 0;
		}
	}
	
	@media (max-width: 414px) {
		.banner .slick-prev,
		.banner .slick-next {
			width: 15px;
			height: 22px;
			margin-top: -11px;
		}
	}
	
	.icon_title {
		text-align: center;
	}
	
	.icon_title span {
		color: #393939;
		font-size: 33px;
		font-weight: bold;
		padding: 0 24px;
		background: url(../img/icon3.png) no-repeat left top;
		position: relative;
	}
	
	.icon_title span:before {
		content: "";
		position: absolute;
		right: 0;
		bottom: 0;
		width: 16px;
		height: 17px;
		background: url(../img/icon4.png) no-repeat center center;
	}
	
	.icon_title span i {
		display: inline-block;
		width: 6px;
		height: 6px;
		background: #033e88;
		border-radius: 2px;
		position: relative;
		top: -9px;
		margin: 0 18px;
	}
	
	.icon_title span em {
		font-style: normal;
		text-transform: uppercase;
		color: #033e88;
		font-size: 26px;
		font-family: "BEBAS_";
	}
	
	@media (max-width: 640px) {
		.icon_title span {
			font-size: 24px;
			line-height: 30px;
		}
		.icon_title span i {
			top: -3px;
			margin: 0 5px;
			width: 4px;
			height: 4px;
		}
		.icon_title span em {
			position: relative;
			top: 1.5px;
			font-size: 20px;
		}
	}
	
	@media (max-width: 414px) {
		.icon_title span {
			font-size: 16px;
			line-height: 30px;
		}
		.icon_title span i {
			top: -4px;
			margin: 0 12px;
		}
		.icon_title span em {
			position: relative;
			top: 1.5px;
			font-size: 14px;
		}
	}
	
	.icon_name {
		text-align: center;
		color: #666666;
		font-size: 15px;
		margin-top: 30px;
	}
	
	@media (max-width: 1024px) {
		.icon_name {
			margin-top: 2.5%;
		}
	}
	
	@media (max-width: 1024px) {
		.icon_name {
			font-size: 14px;
		}
	}
	
	.home_con {
		padding: 82px 0 50px;
	}
	
	.home_con .home_pro {
		margin-top: 50px;
	}
	
	.home_con .home_pro .left a,
	.home_con .home_pro .right a {
		display: block;
		width: 100%;
		position: relative;
	}
	
	.home_con .home_pro .left a .text,
	.home_con .home_pro .right a .text {
		position: absolute;
		left: 35px;
		top: 30px;
		width: 100%;
	}
	
	.home_con .home_pro .left a .text h3 {
		color: #f3f3f3;
	}
	
	.home_con .home_pro .right a .text h3 {
		color: #012953;
	}
	
	.home_con .home_pro .left a .text h3,
	.home_con .home_pro .right a .text h3 {
		font-size: 20px;
		line-height: 22px;
		padding-bottom: 16px;
		margin-bottom: 10px;
		position: relative;
	}
	
	.home_con .home_pro .left a .text h3:before,
	.home_con .home_pro .right a .text h3:before {
		content: "";
		position: absolute;
		left: 0;
		bottom: 0;
		width: 28px;
		height: 2px;
		background: #cfcfcf;
	}
	
	.home_con .home_pro .left a .text span {
		color: #c4e3f8;
	}
	
	.home_con .home_pro .right a .text span {
		color: #2d5580;
	}
	
	.home_con .home_pro .left a .text span,
	.home_con .home_pro .right a .text span {
		font-size: 15px;
		font-family: arial;
		text-transform: uppercase;
		line-height: 20px;
	}
	
	.home_con .home_pro .left {
		/*width: 68.671875%;*/
		width: 100%;
	}
	/*.home_con .home_pro .left ul li {
  float: left;
  width: 48.91%;
  margin-bottom: 20px;
  line-height: 0;
  overflow: hidden;
}*/
	
	.home_con .home_pro .left ul li:first-child {
		width: 66.14582%;
		overflow: hidden;
		float: left;
	}
	
	.home_con .home_pro .left ul li:last-child {
		width: 32.29166%;
		overflow: hidden;
		float: right;
	}
	
	.home_con .home_pro .left ul li:first-child a .text h3 {
		color: #f3f3f3;
		font-size: 30px;
		line-height: 33px;
	}
	
	.home_con .home_pro .left ul li:first-child a .text h3:before {
		width: 40px;
		height: 2px;
		background: #346fb1;
	}
	
	.home_con .home_pro .left ul li:first-child a .text span {
		color: #c4e3f8;
	}
	
	.home_con .home_pro .right {
		width: 100%;
		overflow: hidden;
	}
	
	.home_con .home_pro .right ul li {
		width: 32.29166%;
		float: left;
		margin-right: 1.5625%;
	}
	
	.home_con .home_pro .right ul li:nth-child(3) {
		margin-right: 0;
	}
	
	@media (max-width: 1024px) {
		.home_con {
			padding: 7% 0;
		}
		.home_con .home_pro {
			margin-top: 5%;
		}
		.home_con .home_pro .left ul li {
			margin-bottom: 2.25%;
		}
	}
	
	@media (max-width: 768px) {
		.home_con .home_pro img {
			width: 100%;
		}
		.home_con .home_pro .left a .text,
		.home_con .home_pro .right a .text {
			left: 15px;
			top: 15px;
		}
		.home_con .home_pro .left a .text h3,
		.home_con .home_pro .right a .text h3 {
			font-size: 15px;
			line-height: 22px;
			padding-bottom: 8px;
			margin-bottom: 6px;
		}
		.home_con .home_pro .left a .text span,
		.home_con .home_pro .right a .text span {
			font-size: 12px;
		}
		.home_con .home_pro .left {
			width: 100%;
		}
		.home_con .home_pro .left ul li:first-child a .text h3 {
			line-height: 24px;
			font-size: 15px;
		}
		.home_con .home_pro .left ul li:first-child a .text span {
			color: #c4e3f8;
		}
		.home_con .home_pro .left ul li:nth-child(3) {
			float: right;
		}
		.home_con .home_pro .right {
			width: 100%;
		}
	}
	
	@media (max-width: 414px) {
		.home_con .home_pro .left {
			width: 100%;
		}
		.home_con .home_pro .left ul li {
			width: 100%;
		}
		.home_con .home_pro .left ul li:first-child a .text h3 {
			line-height: 24px;
			font-size: 15px;
		}
		.home_con .home_pro .left ul li:first-child a .text span {
			color: #c4e3f8;
		}
		.home_con .home_pro .left ul li:nth-child(3) {
			float: right;
		}
		.home_con .home_pro .left ul li:first-child,
		.home_con .home_pro .left ul li:last-child {
			width: 100%;
		}
		.home_con .home_pro .right ul li {
			width: 100%;
		}
	}
	
	.home_solutions {
		overflow: hidden;
	}
	
	.home_solutions .text_con {
		width: 100%;
	}
	
	.home_solutions .text_con .img {
		width: 49.9%;
		line-height: 0;
		overflow: hidden;
	}
	
	.home_solutions .text_con .text {
		background: url(../img/home_bg.jpg) no-repeat center center;
		height: 617px;
		width: 50.1%;
		padding-left: 3%;
		padding-top: 8%;
		padding-right: 3%;
	}
	
	.home_solutions .text_con .text .icon_title {
		text-align: left;
	}
	
	.home_solutions .text_con .text .icon_title span {
		color: #ffffff;
		background: url(../img/icon5.png) no-repeat left top;
	}
	
	.home_solutions .text_con .text .icon_title span:before {
		background: url(../img/icon6.png) no-repeat center center;
	}
	
	.home_solutions .text_con .text .icon_title span i {
		background: #537eba;
	}
	
	.home_solutions .text_con .text .icon_title span em {
		color: #537eba;
	}
	
	.home_solutions .text_con .text .con {
		width: 566px;
		margin-top: 5%;
		padding-left: 3%;
	}
	
	.home_solutions .text_con .text .con h3 {
		color: #ffffff;
		font-size: 22px;
		font-weight: normal;
	}
	
	.home_solutions .text_con .text .con p {
		margin-top: 2%;
		color: #ffffff;
		font-size: 14px;
		line-height: 24px;
	}
	
	.home_solutions .text_con .text .con .more {
		margin-top: 6%;
		background: #e60012;
		display: inline-block;
		border-radius: 50px;
		padding: 0 30px;
		height: 38px;
		line-height: 38px;
		color: #ffffff;
		font-size: 13px;
		font-weight: bold;
		text-transform: uppercase;
	}
	
	.home_solutions .slick-prev,
	.home_solutions .slick-next {
		width: 74px;
		height: 74px;
		border: none;
		top: auto;
		bottom: 0;
		margin-top: 0;
	}
	
	.home_solutions .slick-prev {
		background: url(../img/prev1.png) no-repeat center center;
		left: 46.05%;
	}
	
	.home_solutions .slick-next {
		background: url(../img/next1.png) no-repeat center center;
		right: 46.15%;
	}
	
	@media (max-width: 1600px) {
		.home_solutions .text_con .text {
			height: 519px;
		}
		.home_solutions .slick-prev {
			left: 45.25%;
		}
		.home_solutions .slick-next {
			right: 45.48%;
		}
	}
	
	@media (max-width: 1440px) {
		.home_solutions .text_con .text {
			height: 468px;
		}
		.home_solutions .slick-prev {
			left: 44.9%;
		}
		.home_solutions .slick-next {
			right: 44.95%;
		}
		.home_solutions .text_con .text {
			padding-top: 6%;
		}
	}
	
	@media (max-width: 1366px) {
		.home_solutions .text_con .text {
			height: 443px;
		}
		.home_solutions .slick-prev {
			left: 44.9%;
		}
		.home_solutions .slick-next {
			right: 44.6%;
		}
		.home_solutions .text_con .text {
			padding-top: 5%;
		}
	}
	
	@media (max-width: 1024px) {
		.home_solutions .text_con {
			padding: 0 15px;
		}
		.home_solutions .text_con .img {
			width: 100%;
		}
		.home_solutions .text_con .img img {
			width: 100%;
		}
		.home_solutions .text_con .text {
			width: 100%;
			height: auto;
			background-size: 100% 100%;
			padding: 8% 15px 8%;
		}
		.home_solutions .text_con .text .con {
			width: 100%;
		}
		.home_solutions .slick-prev,
		.home_solutions .slick-next {
			width: 50px;
			height: 50px;
			border: none;
			top: auto;
			bottom: 1px;
			margin-top: 0;
			background-size: 100% 100%;
		}
		.home_solutions .slick-prev {
			left: 45%;
		}
		.home_solutions .slick-next {
			right: 45%;
		}
	}
	
	@media (max-width: 768px) {
		.home_solutions .slick-prev,
		.home_solutions .slick-next {
			bottom: 0;
		}
		.home_solutions .slick-prev {
			left: 43.5%;
		}
		.home_solutions .slick-next {
			right: 43.5%;
		}
	}
	
	@media (max-width: 640px) {
		.home_solutions .slick-prev,
		.home_solutions .slick-next {
			bottom: 0;
		}
		.home_solutions .slick-prev {
			left: 42%;
		}
		.home_solutions .slick-next {
			right: 42%;
		}
	}
	
	@media (max-width: 480px) {
		.home_solutions .slick-prev,
		.home_solutions .slick-next {
			width: 30px;
			height: 30px;
		}
		.home_solutions .slick-prev {
			left: 43%;
		}
		.home_solutions .slick-next {
			right: 43%;
		}
	}
	
	@media (max-width: 414px) {
		.home_solutions .text_con .text .con h3 {
			font-size: 16px;
		}
	}
	
	@media (max-width: 375px) {
		.home_solutions .slick-prev,
		.home_solutions .slick-next {
			width: 30px;
			height: 30px;
		}
		.home_solutions .slick-prev {
			left: 41%;
		}
		.home_solutions .slick-next {
			right: 41%;
		}
	}
	
	@media (max-width: 320px) {
		.home_solutions .slick-prev,
		.home_solutions .slick-next {
			width: 30px;
			height: 30px;
		}
		.home_solutions .slick-prev {
			left: 40%;
		}
		.home_solutions .slick-next {
			right: 40%;
		}
	}
	
	.home_case {
		overflow: hidden;
		margin-top: 100px;
		padding-bottom: 178px;
		background: url(../img/case_bg.jpg) no-repeat center bottom;
	}
	
	.home_case .left {
		width: 33.984375%;
		margin-top: 6%;
	}
	
	.home_case .left .icon_title {
		text-align: left;
	}
	
	.home_case .left ul {
		margin-top: 30px;
		width: 284px;
	}
	
	.home_case .left ul li {
		float: left;
		min-width: 135px;
		border: 1px solid #e6e6e6;
		border-radius: 50px;
		line-height: 40px;
		margin: 10px 0;
		text-align: center;
	}
	
	.home_case .left ul li a {
		display: block;
		color: #777777;
		font-size: 16px;
	}
	
	.home_case .left ul li:nth-child(2n) {
		float: right;
	}
	
	.home_case .left .text {
		margin-top: 34px;
	}
	
	.home_case .left .text h3 {
		color: #014090;
		font-size: 22px;
		font-weight: normal;
		padding-bottom: 22px;
		margin-bottom: 25px;
		position: relative;
	}
	
	.home_case .left .text h3:before {
		content: "";
		position: absolute;
		left: 0;
		bottom: 0;
		width: 52px;
		height: 2px;
		background: #dfe4e9;
	}
	
	.home_case .left .text p {
		color: #666666;
		font-size: 15px;
		line-height: 24px;
	}
	
	.home_case .left .text a {
		margin-top: 25px;
		display: inline-block;
		color: #014090;
		text-transform: uppercase;
		font-size: 15px;
		background: url(../img/more1.jpg) no-repeat right center;
		padding-right: 38px;
	}
	
	.home_case .right {
		width: 61.09375%;
		position: relative;
	}
	
	.home_case .right img {
		width: 100%;
	}
	
	.home_case .right i {
		display: block;
		float: right;
		width: 91.7%;
		line-height: 0;
	}
	
	.home_case .right span {
		display: block;
		position: absolute;
		left: 0;
		top: 7%;
		width: 95.7%;
		line-height: 0;
		overflow: hidden;
	}
	
	@media (max-width: 1024px) {
		.home_case {
			margin-top: 8%;
			padding-bottom: 8%;
		}
		.home_case .left {
			width: 100%;
			margin-top: 0;
		}
		.home_case .left ul {
			margin-top: 3%;
			width: 100%;
		}
		.home_case .left ul li {
			margin: 0 0 0 2%;
		}
		.home_case .left ul li:nth-child(2n) {
			float: left;
		}
		.home_case .left ul li:first-child {
			margin-left: 0;
		}
		.home_case .left .text {
			margin-top: 3%;
		}
		.home_case .right {
			width: 100%;
		}
		.home_case .right .bg {
			display: none;
		}
		.home_case .right span {
			position: relative;
			width: 100%;
			top: 0;
			display: block;
			margin-top: 3%;
		}
	}
	
	@media (max-width: 480px) {
		.home_case .left ul {
			margin-top: 5%;
		}
		.home_case .left ul li {
			width: 23.5%;
			min-width: 0;
		}
		.home_case .left .text {
			margin-top: 3%;
		}
	}
	
	@media (max-width: 414px) {
		.home_case .left ul li {
			line-height: 30px;
		}
		.home_case .left ul li a {
			font-size: 13px;
		}
		.home_case .left .text {
			margin-top: 6%;
		}
		.home_case .left .text h3 {
			font-size: 15px;
			font-weight: normal;
			padding-bottom: 10px;
			margin-bottom: 8px;
		}
		.home_case .left .text p {
			color: #666666;
			font-size: 14px;
			line-height: 24px;
		}
		.home_case .left .text a {
			margin-top: 4%;
		}
	}
	
	.home_news {
		background: url(../img/bg2.jpg);
		padding: 80px 0 100px;
	}
	
	.home_news .ol_list {
		margin-top: 40px;
		text-align: center;
	}
	
	.home_news .ol_list a {
		display: inline-block;
		background: #fff;
		border-radius: 50px;
		border: 1px solid #e9e9e9;
		line-height: 40px;
		padding: 0 35px;
		color: #777777;
		font-size: 16px;
		margin: 0 7px;
		position: relative;
	}
	
	.home_news .ol_list a:before {
		display: none;
		content: "";
		position: absolute;
		left: 50%;
		margin-left: -5px;
		bottom: -5px;
		width: 10px;
		height: 5px;
		background: url(../img/bg3.png) no-repeat center center;
	}
	
	.home_news .ol_list a:hover,
	.home_news .ol_list a.cur {
		background: #093c8a;
		border-color: #093c8a;
		color: #fff;
	}
	
	.home_news .ol_list a:hover:before,
	.home_news .ol_list a.cur:before {
		display: block;
	}
	
	.home_news .con_box {
		margin-top: 60px;
	}
	
	.home_news .con_box .left {
		width: 46%;
		position: relative;
	}
	
	.home_news .con_box .left span {
		width: 100%;
		line-height: 0;
		display: block;
		overflow: hidden;
	}
	
	.home_news .con_box .left .text {
		position: absolute;
		left: 0;
		bottom: 0;
		width: 100%;
		height: 50px;
		line-height: 50px;
		background: rgba(0, 0, 0, 0.4);
		padding-left: 20px;
	}
	
	.home_news .con_box .left .text p {
		max-width: 70%;
		float: left;
		text-overflow: ellipsis;
		overflow: hidden;
		white-space: nowrap;
		color: #ffffff;
		font-size: 17px;
	}
	
	.home_news .con_box .left .text em {
		float: right;
		display: inline-block;
		background: #e60012;
		font-style: normal;
		color: #ffffff;
		font-size: 14px;
		font-family: arial;
		padding: 0 18px;
	}
	
	.home_news .con_box .left .text em i {
		display: inline-block;
		background: url(../img/more2.png) no-repeat center center;
		width: 24px;
		height: 6px;
		position: relative;
		margin-left: 10px;
		top: -2px;
	}
	
	.home_news .con_box .right {
		width: 54%;
	}
	
	.home_news .con_box .right ul li {
		float: left;
		width: 100%;
		background: #fff;
		height: 137px;
		margin-bottom: 3px;
	}
	
	.home_news .con_box .right ul li a {
		display: block;
		width: 100%;
		height: 100%;
		padding: 0 50px;
	}
	
	.home_news .con_box .right ul li a .text_con {
		padding-top: 5%;
	}
	
	.home_news .con_box .right ul li a .text_con .text {
		width: 80%;
	}
	
	.home_news .con_box .right ul li a .text_con .text h3 {
		color: #323232;
		font-size: 17px;
		font-weight: normal;
		text-overflow: ellipsis;
		overflow: hidden;
		white-space: nowrap;
	}
	
	.home_news .con_box .right ul li a .text_con .text p {
		margin-top: 8px;
		color: #888888;
		font-size: 15px;
		line-height: 24px;
		height: 48px;
		overflow: hidden;
	}
	
	.home_news .con_box .right ul li a .text_con .data span {
		text-align: center;
		display: block;
		color: #666666;
		font-size: 42px;
	}
	
	.home_news .con_box .right ul li a .text_con .data em {
		font-style: normal;
		color: #919294;
		font-size: 16px;
		font-family: arial;
	}
	
	.home_news .con_box .right ul li:hover {
		background: #093c89;
	}
	
	.home_news .con_box .right ul li:hover a .text_con .text h3,
	.home_news .con_box .right ul li:hover a .text_con .text p,
	.home_news .con_box .right ul li:hover a .text_con .data span,
	.home_news .con_box .right ul li:hover a .text_con .data em {
		color: #fff;
	}
	
	@media (max-width: 1024px) {
		.home_news {
			padding: 8% 0;
		}
		.home_news .ol_list {
			margin-top: 4%;
		}
		.home_news .con_box .right ul li {
			height: auto;
		}
		.home_news .con_box .right ul li a {
			padding: 2.7% 15px;
		}
		.home_news .con_box .right ul li a .text_con {
			padding-top: 0;
		}
		.home_news .con_box .right ul li a .text_con .data {
			max-width: 30%;
		}
	}
	
	@media (max-width: 991px) {
		.home_news .con_box .left {
			width: 100%;
		}
		.home_news .con_box .left img {
			width: 100%;
		}
		.home_news .con_box .right {
			width: 100%;
		}
	}
	
	@media (max-width: 480px) {
		.home_news .ol_list {
			text-align: center;
		}
		.home_news .ol_list a {
			float: left;
			width: 32%;
			padding: 0;
			margin: 0 2% 0 0;
		}
		.home_news .ol_list a:last-child {
			margin-right: 0;
		}
		.home_news .con_box {
			margin-top: 6%;
		}
		.home_news .con_box .right ul li a {
			padding: 5% 15px;
		}
		.home_news .con_box .right ul li a .text_con .text {
			width: 100%;
		}
		.home_news .con_box .right ul li a .text_con .data {
			float: none;
		}
	}
	
	@media (max-width: 414px) {
		.home_news .ol_list {
			text-align: center;
		}
		.home_news .ol_list a {
			line-height: 34px;
			font-size: 13px;
		}
		.home_news .con_box .left .text {
			height: 36px;
			line-height: 36px;
			padding-left: 15px;
		}
		.home_news .con_box .left .text p {
			max-width: 60%;
			font-size: 13px;
		}
		.home_news .con_box .left .text em {
			display: block;
			font-size: 13px;
			padding: 0 15px;
			max-width: 40%;
			text-align: center;
		}
		.home_news .con_box .left .text em i {
			display: none;
		}
		.home_news .con_box .right ul li a .text_con .text h3 {
			font-size: 15px;
		}
		.home_news .con_box .right ul li a .text_con .text p {
			font-size: 13px;
			line-height: 22px;
		}
		.home_news .con_box .right ul li a .text_con .data span {
			font-size: 32px;
		}
	}
	
	@media (max-width: 320px) {
		.home_news .con_box .right ul li a .text_con .text {
			width: 75%;
		}
	}
	
	.case_banner {
		background: url(../img/case_banner.jpg) no-repeat center center;
		min-height: 700px;
		padding-top: 414px;
		text-align: center;
	}
	
	.case_banner h1 {
		color: #ffffff;
		font-size: 40px;
	}
	
	@media (max-width: 1024px) {
		.case_banner {
			background-size: 100% 100%;
			min-height: 450px;
			padding-top: 267px;
		}
	}
	
	@media (max-width: 768px) {
		.case_banner {
			min-height: 340px;
			padding-top: 197px;
		}
	}
	
	@media (max-width: 640px) {
		.case_banner {
			min-height: auto;
			padding: 14% 0 10%;
		}
		.case_banner h1 {
			font-size: 24px;
		}
	}
	
	.case_box {
		padding: 55px 0 80px;
	}
	
	.case_box ul li {
		float: left;
		width: 23.5%;
		margin-right: 2%;
		position: relative;
	}
	
	.case_box ul li .img {
		line-height: 0;
		overflow: hidden;
	}
	
	.case_box ul li img {
		width: 100%;
	}
	
	.case_box ul li:last-child {
		margin-right: 0;
	}
	
	.case_box ul li .text {
		position: absolute;
		left: 0;
		bottom: 0;
		width: 100%;
		background: rgba(255, 255, 255, 0.8);
		color: #555555;
		font-size: 20px;
		padding: 7% 15px;
	}
	
	.case_box ul li .text span {
		padding-left: 6%;
		position: relative;
	}
	
	.case_box ul li .text span:before {
		content: "";
		position: absolute;
		left: 0;
		top: 50%;
		margin-top: -2px;
		width: 4px;
		height: 4px;
		border-radius: 2px;
		background: #585858;
	}
	
	.case_box ul li:hover .text {
		background: #e60012;
		color: #fff;
	}
	
	.case_box ul li:hover .text span:before {
		background: #fff;
	}
	
	@media (max-width: 991px) {
		.case_box {
			padding: 6% 0 7%;
		}
	}
	
	@media (max-width: 640px) {
		.case_box ul li {
			width: 49%;
			float: left;
			margin-bottom: 2%;
			margin-right: 0;
		}
		.case_box ul li:nth-child(2n) {
			float: right;
		}
		.case_box ul li .text {
			font-size: 16px;
			padding: 5% 10px;
		}
		.case_box ul li .text span {
			padding-left: 10px;
		}
	}
	
	.case_banner2 {
		background: url(../img/case_banner2.jpg) no-repeat center center / cover;
		min-height: 700px;
	}
	
	.case_banner2 .text {
		width: 42%;
		padding-top: 24%;
	}
	
	.case_banner2 .text h3 {
		color: #ececec;
		font-size: 48px;
	}
	
	.case_banner2 .text .t {
		margin-top: 5%;
		color: #ffffff;
		font-size: 18px;
		line-height: 36px;
	}
	
	@media (max-width: 1024px) {
		.case_banner2 {
			min-height: 466px;
		}
		.case_banner2 .text {
			padding-top: 13%;
		}
		.case_banner2 .text h3 {
			font-size: 30px;
		}
		.case_banner2 .text .t {
			font-size: 14px;
			line-height: 22px;
		}
	}
	
	@media (max-width: 768px) {
		.case_banner2 {
			min-height: 430px;
		}
		.case_banner2 .text {
			padding-top: 13%;
		}
		.case_banner2 .text h3 {
			font-size: 26px;
		}
		.case_banner2 .text .t {
			font-size: 14px;
			line-height: 22px;
		}
	}
	
	@media (max-width: 640px) {
		.case_banner2 {
			min-height: 355px;
		}
		.case_banner2 .text {
			width: 100%;
			text-align: center;
		}
		.case_banner2 .text .t {
			margin-top: 2%;
		}
	}
	/*@media (max-width: 480px) {
  .case_banner2 {
    min-height: auto;
    padding: 20% 0 6%;
  }
  .case_banner2 .text {
    width: 100%;
    padding-top: 0;
  }
  .case_banner2 .text h3 {
    font-size: 24px;
  }
}
@media (max-width: 320px) {
  .case_banner2 .text h3 {
    font-size: 18px;
  }
}*/
	
	.case_list {
		margin-top: 50px;
		margin-bottom: 60px;
	}
	
	.case_list .top_title {
		background: url(../img/gcase_bg.jpg) no-repeat center center / cover;
		min-height: 266px;
		padding-top: 75px;
	}
	
	.case_list .top_title h3 {
		text-align: center;
		color: #fff;
		font-size: 28px;
		padding-bottom: 16px;
		position: relative;
	}
	
	.case_list .top_title h3:before {
		content: "";
		position: absolute;
		left: 50%;
		margin-left: -16px;
		bottom: 0;
		width: 32px;
		height: 1px;
		background: #fff;
	}
	
	.case_list .top_title p {
		text-align: center;
		width: 640px;
		margin: 12px auto 0;
		color: #ffffff;
		font-size: 15px;
		line-height: 25px;
	}
	
	.case_list ul {
		margin-top: 2%;
		/*margin-left: -2%;*/
	}
	
	.case_list ul li {
		float: left;
		width: 32%;
		position: relative;
		margin-bottom: 2%;
		margin-right: 2%;
	}
	/*.case_list ul li:first-child{
  width: 66%;
}
.case_list ul li:nth-child(2),
.case_list ul li:nth-child(5),
.case_list ul li:nth-child(8) {
  margin-right: 0;
}*/
	
	.case_list ul li:nth-child(3n) {
		margin-right: 0;
	}
	
	.case_list ul li .img {
		line-height: 0;
		overflow: hidden;
	}
	
	.case_list ul li .img img {
		width: 100%;
	}
	
	.case_list ul li .t {
		position: absolute;
		left: 0;
		bottom: 0;
		width: 100%;
		background: url(../img/gcase_bg2.png);
		line-height: 52px;
		color: #ffffff;
		font-size: 16px;
		text-overflow: ellipsis;
		overflow: hidden;
		white-space: nowrap;
		padding: 0 30px;
	}
	
	.case_list ul li:hover .t {
		background: #e87f15;
	}
	
	.case_list .more_btn {
		display: block;
		width: 100%;
		background: #f2f2f2;
		text-align: center;
		line-height: 46px;
		color: #666666;
		font-size: 15px;
		font-family: arial;
		text-transform: uppercase;
	}
	
	.case_list .more_btn span {
		display: inline-block;
		background: url(../img/more_icon1.png) no-repeat right center;
		padding-right: 40px;
	}
	
	@media (max-width: 991px) {
		.case_list {
			margin: 5% 0 6%;
		}
	}
	
	@media (max-width: 640px) {
		.case_list .top_title {
			min-height: auto;
			padding-top: 5%;
			padding-bottom: 5%;
		}
		.case_list .top_title h3 {
			font-size: 22px;
			padding-bottom: 16px;
		}
		.case_list .top_title p {
			width: 100%;
			font-size: 14px;
			line-height: 24px;
			padding: 0 10px;
		}
	}
	
	@media (max-width: 480px) {
		.case_list .top_title h3 {
			font-size: 16px;
			padding-bottom: 8px;
		}
		.case_list ul li {
			width: 100%;
			margin-right: 0;
		}
		.case_list ul li:first-child,
		.case_list ul li:last-child {
			width: 100%;
		}
		.case_list ul li .t {
			line-height: 32px;
			font-size: 14px;
			padding: 0 10px;
		}
	}
	
	.case_show {
		padding: 60px 0;
	}
	
	.case_show h1 {
		text-align: center;
		color: #555555;
		font-size: 28px;
		font-weight: normal;
		border-bottom: 1px solid #f0f0f0;
		padding-bottom: 36px;
	}
	
	.case_show .name {
		text-align: center;
		color: #a8a8a8;
		font-size: 14px;
		margin-top: 2.2%;
	}
	
	.case_show .name span {
		display: inline-block;
		margin: 0 5px;
	}
	
	.case_show .con {
		padding: 32px 0 0;
		color: #666666;
		font-size: 14px;
		line-height: 30px;
	}
	
	.case_show .bottom {
		margin-top: 4%;
	}
	
	.case_show .bottom ol {
		float: left;
		width: 85%;
	}
	
	.case_show .bottom ol li {
		float: left;
		padding: 2% 0;
		width: 100%;
		border-bottom: 1px dashed #e9e9e9;
	}
	
	.case_show .bottom ol li:last-child {
		border-bottom: none;
	}
	
	.case_show .bottom ol li a {
		display: inline-block;
		color: #777777;
		font-size: 14px;
	}
	
	.case_show .bottom ol li a span {
		display: inline-block;
		color: #333333;
		font-size: 16px;
	}
	
	.case_show .bottom .return {
		margin-top: 4%;
		float: right;
		display: inline-block;
		background: #17478e;
		color: #fff;
		font-size: 14px;
		line-height: 34px;
		border-radius: 4px;
		padding: 0 20px;
	}
	
	.case_show .btn {
		margin-top: 3.5%;
		float: right;
		display: block;
		width: 13%;
		line-height: 0;
	}
	
	.case_show .btn img {
		width: 100%;
	}
	
	@media (max-width: 991px) {
		.case_show {
			padding: 6% 0;
		}
		.case_show h1 {
			padding-bottom: 3%;
		}
		.case_show .con {
			padding-top: 3%;
		}
	}
	
	@media (max-width: 768px) {
		.case_show .btn {
			width: 20%;
		}
	}
	
	@media (max-width: 640px) {
		.case_show h1 {
			font-size: 24px;
		}
		.case_show .btn {
			width: 20%;
		}
	}
	
	@media (max-width: 480px) {
		.case_show h1 {
			font-size: 16px;
		}
		.case_show .btn {
			width: 24%;
		}
	}
	
	@media (max-width: 375px) {
		.case_show h1 {
			font-size: 16px;
		}
		.case_show .btn {
			width: 30%;
		}
	}
	
	.pro_menu {
		padding-top: 90px;
		border-bottom: 1px solid #cacaca;
	}
	
	.pro_menu ul {
		padding-top: 32px;
		padding-bottom: 36px;
		width: 80%;
		margin: 0 auto;
	}
	
	.pro_menu ul li {
		float: left;
		width: 12%;
		margin-right: 10%;
	}
	
	.pro_menu ul li:last-child {
		margin-right: 0;
	}
	
	.pro_menu ul li .img {
		line-height: 0;
	}
	
	.pro_menu ul li .img span {
		display: block;
	}
	
	.pro_menu ul li .img em {
		display: none;
	}
	
	.pro_menu ul li p {
		margin-top: 12px;
		text-align: center;
		color: #212121;
		font-size: 16px;
	}
	
	.pro_menu ul li:hover .img span,
	.pro_menu ul li.cur .img span {
		display: none;
	}
	
	.pro_menu ul li:hover .img em,
	.pro_menu ul li.cur .img em {
		display: block;
	}
	
	.pro_menu ul li:hover p,
	.pro_menu ul li.cur p {
		color: #1c6ac3;
	}
	
	@media (max-width: 1024px) {
		.pro_menu {
			padding-top: 0;
		}
	}
	
	@media (max-width: 991px) {
		.pro_menu ul {
			padding-top: 4%;
			padding-bottom: 4%;
		}
		.pro_menu ul li p {
			font-size: 12px;
		}
	}
	
	@media (max-width: 768px) {
		.pro_menu ul {
			width: 100%;
		}
	}
	
	@media (max-width: 480px) {
		.pro_menu ul li {
			width: 15%;
			margin-right: 5%;
		}
	}
	
	@media (max-width: 414px) {
		.pro_menu ul {
			padding: 6% 0;
		}
		.pro_menu ul li {
			width: 14%;
			margin-right: 6.6666%;
		}
	}
	
	@media (max-width: 414px) {
		.pro_menu ul {
			width: 100%;
		}
	}
	
	.pro_list ul li {
		width: 100%;
		float: left;
		position: relative;
	}
	
	.pro_list ul li .img {
		line-height: 0;
		overflow: hidden;
		cursor: pointer;
	}
	
	.pro_list ul li .text_con {
		position: absolute;
		right: 17.1875%;
		top: 28%;
		width: 32%;
	}
	
	.pro_list ul li .text_con .text span {
		display: block;
		float: left;
		width: 20%;
	}
	
	.pro_list ul li .text_con .text .t {
		float: right;
		width: 78%;
	}
	
	.pro_list ul li .text_con i {
		display: block;
		line-height: 0;
		width: 12%;
		margin-bottom: 10px;
	}
	
	.pro_list ul li .text_con .d {
		color: #ffffff;
		font-size: 38px;
		line-height: 48px;
	}
	
	.pro_list ul li .text_con .tw {
		margin-top: 8px;
		color: #dbdbdb;
		font-size: 14px;
		font-family: arial;
		text-transform: uppercase;
	}
	
	.pro_list ul li .text_con .more {
		margin-top: 34px;
		display: inline-block;
		line-height: 50px;
		border-radius: 50px;
		background: #f9970c;
		padding: 0 30px;
		color: #fff;
		font-size: 16px;
	}
	
	.pro_list ul li:nth-child(2n) .text_con {
		left: 22%;
		right: auto;
	}
	
	.pro_list ul li:nth-child(2n) .text_con .t {
		width: 100%;
	}
	
	.pro_list ul li:nth-child(2n) .text_con .t i {
		margin-bottom: 22px;
	}
	
	.pro_list ul li:nth-child(3) .text_con {
		top: 33%;
	}
	
	.pro_list ul li:nth-child(3) .text_con .t {
		width: 100%;
	}
	
	.pro_list ul li:nth-child(3) .text_con .t i {
		width: 15%;
		margin-bottom: 22px;
	}
	
	.pro_list ul li:nth-child(4) .text_con .t i {
		width: 9%;
		margin-bottom: 22px;
	}
	
	@media (max-width: 1440px) {
		.pro_list ul li .text_con .d {
			font-size: 28px;
			line-height: 38px;
		}
	}
	
	@media (max-width: 1024px) {
		.pro_list ul li .text_con {
			right: 15px;
			width: 45%;
			top: 20%;
		}
		.pro_list ul li .text_con .text span {
			width: 14.7%;
		}
		.pro_list ul li .text_con .t {
			width: 80%;
			margin-top: 1%;
		}
		.pro_list ul li .text_con .d {
			font-size: 20px;
			line-height: 28px;
		}
		.pro_list ul li .text_con .tw {
			margin-top: 8px;
			font-size: 12px;
		}
		.pro_list ul li .text_con .more {
			font-size: 14px;
			line-height: 38px;
		}
		.pro_list ul li:nth-child(2n) .text_con {
			left: 15px;
		}
		.pro_list ul li:nth-child(3) .text_con {
			top: 27%;
		}
	}
	
	@media (max-width: 991px) {
		.pro_list ul li .text_con .d {
			font-size: 19px;
		}
	}
	
	@media (max-width: 768px) {
		.pro_list ul li .text_con {
			right: 15px;
			width: 48%;
			top: 20%;
		}
		.pro_list ul li .text_con .text span {
			width: 18%;
		}
		.pro_list ul li .text_con .t {
			margin-top: 1%;
		}
		.pro_list ul li .text_con .t i {
			margin-bottom: 10px;
		}
		.pro_list ul li .text_con .d {
			font-size: 17px;
			line-height: 24px;
		}
		.pro_list ul li .text_con .more {
			margin-top: 15px;
			font-size: 13px;
			line-height: 32px;
		}
		.pro_list ul li:nth-child(2n) .text_con .t i {
			margin-bottom: 10px;
		}
		.pro_list ul li:nth-child(3) .text_con .t i {
			margin-bottom: 10px;
		}
	}
	
	@media (max-width: 640px) {
		.pro_list ul li .text_con {
			background: #084899;
			padding: 20px 15px 30px;
			position: relative;
			left: 0;
			top: 0;
			width: 100%;
		}
		.pro_list ul li .text_con .text span {
			width: 7%;
		}
		.pro_list ul li .text_con .text .t {
			margin-top: 0;
			width: 91%;
		}
		.pro_list ul li .text_con .text .t i {
			width: 4%;
			margin-bottom: 7px;
		}
		.pro_list ul li .text_con .d {
			font-size: 14px;
			line-height: 20px;
		}
		.pro_list ul li .text_con .tw {
			margin-top: 5px;
			font-size: 12px;
		}
		.pro_list ul li .text_con .more {
			margin-top: 20px;
			line-height: 38px;
			border-radius: 38px;
			padding: 0 20px;
			color: #fff;
			font-size: 13px;
		}
		.pro_list ul li:nth-child(2n) .text_con {
			left: 0;
			right: auto;
		}
		.pro_list ul li:nth-child(3) .text_con {
			top: 0;
		}
	}
	
	@media (max-width: 480px) {
		.pro_list ul li .text_con .text span {
			width: 9%;
		}
		.pro_list ul li .text_con .text .t {
			width: 88%;
		}
		.pro_list ul li .text_con .d {
			font-size: 18px;
		}
	}
	
	@media (max-width: 414px) {
		.pro_list ul li .text_con .text span {
			width: 10%;
		}
		.pro_list ul li .text_con .text .t {
			width: 88%;
		}
		.pro_list ul li .text_con .text .t i {
			width: 6%;
		}
	}
	
	@media (max-width: 414px) {
		.pro_list ul li .text_con .tw {
			font-size: 9px;
			margin-top: 3px;
		}
	}
	
	.contact_banner {
		background: url(../img/contact_banner.jpg) no-repeat center top / cover;
		min-height: 700px;
		padding-top: 240px;
	}
	
	.contact_banner h1 {
		text-align: center;
		color: #fff;
		font-size: 47px;
	}
	
	.contact_banner h3 {
		text-align: center;
		color: #fff;
		font-weight: normal;
		font-size: 30px;
		margin-top: 8px;
	}
	
	.contact_banner .name {
		text-align: center;
		color: #fff;
		font-size: 14px;
		width: 750px;
		margin: 10px auto 0;
		line-height: 24px;
	}
	
	.contact_banner ol {
		width: 790px;
		margin: 60px auto 0;
	}
	
	.contact_banner ol li {
		float: left;
		width: 48%;
		background: rgba(30, 182, 255, 0.2);
		line-height: 45px;
		margin-bottom: 25px;
		color: #fff;
		padding: 0 20px;
		font-size: 16px;
		border-radius: 50px;
	}
	
	.contact_banner ol li:nth-child(2n) {
		float: right;
	}
	
	.contact_banner ol li span {
		display: inline-block;
		padding-left: 30px;
	}
	
	.contact_banner ol li .s1 {
		background: url(../img/contact_icon2.png) no-repeat left center;
	}
	
	.contact_banner ol li .s2 {
		background: url(../img/contact_icon1.png) no-repeat left center;
	}
	
	.contact_banner ol li .s3 {
		background: url(../img/contact_icon3.png) no-repeat left center;
	}
	.contact_banner ol li .s3 a{
		color:#FFFFFF;
	}
	.contact_banner ol li .s4 a{
		color:#FFFFFF;
	}
	.contact_banner ol li .s4 {
		background: url(../img/contact_icon4.png) no-repeat left center;
	}
	
	@media (max-width: 1024px) {
		.contact_banner {
			padding-top: 10%;
			padding-bottom: 10%;
			min-height: auto;
		}
	}
	
	@media (max-width: 768px) {
		.contact_banner .name {
			width: 100%;
		}
		.contact_banner ol {
			width: 100%;
			margin-top: 6%;
		}
	}
	
	@media (max-width: 640px) {
		.contact_banner h1 {
			font-size: 24px;
		}
		.contact_banner h3 {
			font-size: 20px;
		}
		.contact_banner ol li {
			width: 100%;
			margin-bottom: 3.5%;
		}
	}
	
	@media (max-width: 375px) {
		.contact_banner {
			padding-top: 12%;
			padding-bottom: 13%;
		}
		.contact_banner ol li {
			font-size: 14px;
		}
	}
	
	@media (max-width: 320px) {
		.contact_banner h1 {
			font-size: 18px;
		}
		.contact_banner h3 {
			font-size: 15px;
		}
		.contact_banner .name {
			font-size: 14px;
			line-height: 20px;
		}
		.contact_banner ol li {
			font-size: 12px;
		}
	}
	
	.message {
		padding: 70px 0 80px;
	}
	
	.message h3 {
		text-align: center;
		color: #333333;
		font-size: 22px;
		font-weight: normal;
	}
	
	.message ol {
		width: 1000px;
		margin: 50px auto 0;
	}
	
	.message ol li {
		float: left;
		width: 48%;
		margin-bottom: 25px;
		background: #f3f3f3;
	}
	
	.message ol li:nth-child(2n) {
		float: right;
	}
	
	.message ol li:nth-child(6) {
		float: left;
	}
	
	.message ol li:nth-child(7) {
		float: right;
	}
	
	.message ol li input {
		height: 54px;
		width: 100%;
		background: none;
		border: none;
		color: #999999;
		padding: 0 15px;
		font-size: 14px;
		font-family: "微软雅黑";
		outline: none;
		-webkit-appearance: none;
	}
	
	.message ol li textarea {
		font-size: 14px;
		padding: 10px 15px;
		width: 100%;
		height: 162px;
		border: none;
		background: none;
		color: #999999;
		font-family: "微软雅黑";
		outline: none;
		-webkit-appearance: none;
	}
	
	.message ol li .btn,
	.message ol li .btn2 {
		color: #fff;
		font-size: 18px;
	}
	
	.message ol li .btn {
		background: #e60012;
	}
	
	.message ol li .btn2 {
		background: #808080;
	}
	
	@media (max-width: 1024px) {
		.message ol {
			width: 100%;
		}
	}
	
	@media (max-width: 991px) {
		.message {
			padding: 7% 0;
		}
		.message ol {
			margin-top: 5%;
		}
	}
	
	@media (max-width: 640px) {
		.message ol li {
			width: 100%;
			margin-bottom: 2%;
		}
		.message ol li input {
			padding: 2% 10px;
			height: auto;
			font-size: 12px;
		}
		.message ol li textarea {
			font-size: 12px;
			padding: 5px 10px;
		}
		.message ol li:nth-child(6),
		.message ol li:nth-child(7) {
			width: 49%;
		}
		.message ol li:nth-child(6) input,
		.message ol li:nth-child(7) input {
			padding: 5% 0;
		}
	}
	
	@media (max-width: 414px) {
		.message h3 {
			font-size: 17px;
		}
	}
	
	@media (max-width: 320px) {
		.message h3 {
			font-size: 15px;
		}
		.message ol li .btn,
		.message ol li .btn2 {
			font-size: 15px;
		}
	}
	
	#allmap {
		width: 100%;
		height: 520px;
		border: #ccc solid 1px;
		font-size: 12px;
		position: relative;
	}
	
	@media (max-width: 991px) {
		#allmap {
			height: 420px;
		}
	}
	
	@media (max-width: 480px) {
		#allmap {
			height: 360px;
		}
	}
	
	.service_banner {
		background: url(../img/g_service_bg.jpg) no-repeat center center / cover;
		min-height: 700px;
		padding-top: 310px;
	}
	
	.service_banner h1 {
		margin-top: 13px;
		font-size: 47px;
		font-weight: bold;
		color: #fff;
		text-align: center;
	}
	
	.service_banner .name {
		width: 62%;
		margin: 15px auto 0;
		color: #fff;
		font-size: 16px;
		line-height: 26px;
		text-align: center;
	}
	
	@media (max-width: 1024px) {
		.service_banner {
			padding-top: 12%;
			min-height: 530px;
		}
	}
	
	@media (max-width: 768px) {
		.service_banner {
			min-height: 445px;
		}
		.service_banner .name {
			width: 100%;
			font-size: 14px;
			line-height: 24px;
		}
	}
	
	@media (max-width: 640px) {
		.service_banner {
			min-height: auto;
			padding: 12% 0 6%;
		}
		.service_banner h1 {
			font-size: 24px;
		}
	}
	
	.title_box {
		background: url(../img/top_bg3.png) no-repeat center center;
		width: 700px;
		height: 109px;
		position: relative;
		margin: 90px auto 0;
		text-align: center;
		padding-left: 95.5px;
	}
	
	.title_box a {
		display: block;
		height: 109px;
		float: left;
		width: 225px;
		border-right: 1px solid #659bdb;
		padding-top: 26px;
	}
	
	.title_box a span {
		display: block;
		height: 28px;
	}
	
	.title_box a em {
		font-style: normal;
		color: #ffffff;
		font-size: 14px;
		margin-top: 8px;
		display: block;
	}
	
	.title_box a:last-child {
		border-color: rgba(0, 0, 0, 0);
	}
	
	.title_box a:hover,
	.title_box a.cur {
		background: #124490;
	}
	
	@media (max-width: 1024px) {
		.title_box {
			margin-top: 9%;
		}
	}
	
	@media (max-width: 640px) {
		.title_box {
			width: 100%;
		}
	}
	
	@media (max-width: 480px) {
		.title_box {
			background-size: 100% cover;
			height: auto;
			padding-left: 0;
		}
		.title_box a {
			width: 50%;
			height: auto;
			padding-top: 3%;
			padding-bottom: 3%;
		}
		.title_box a span {
			width: 20%;
			height: auto;
			line-height: 0;
			margin: 0 auto;
		}
		.title_box a em {
			margin-top: 5px;
		}
	}
	
	@media (max-width: 414px) {
		.title_box a em {
			font-size: 12px;
		}
	}
	
	.service_yw {
		text-align: center;
		color: #e8e8e8;
		font-size: 36px;
		font-weight: bold;
		font-family: arial;
	}
	
	@media (max-width: 414px) {
		.service_yw {
			font-size: 20px;
		}
	}
	
	.service_tit {
		text-align: left;
		color: #666666;
		font-size: 26px;
	}
	
	@media (max-width: 640px) {
		.service_tit {
			font-size: 22px;
		}
	}
	
	@media (max-width: 414px) {
		.service_tit {
			font-size: 17px;
		}
	}
	
	.service_name {
		text-align: center;
		color: #333333;
		font-size: 14px;
		line-height: 24px;
		width: 648px;
		margin: 20px auto 0;
	}
	
	@media (max-width: 640px) {
		.service_name {
			width: 100%;
			margin-top: 3%;
		}
	}
	
	.service_linian {
		padding: 50px 0 56px;
	}
	
	.service_linian ul {
		margin-top: 50px;
	}
	
	.service_linian ul li {
		float: left;
		width: 22%;
		margin-right: 4%;
	}
	
	.service_linian ul li:last-child {
		margin-right: 0;
	}
	
	.service_linian ul li .img {
		line-height: 0;
		overflow: hidden;
		border-radius: 50%;
	}
	
	.service_linian ul li .text {
		padding: 22px 10px 20px;
		text-align: center;
		color: #333333;
		font-size: 18px;
		text-overflow: ellipsis;
		overflow: hidden;
		white-space: nowrap;
		border-bottom: 1px solid #e4e4e4;
	}
	
	@media (max-width: 991px) {
		.service_linian {
			padding: 5.5% 0 6%;
		}
	}
	
	@media (max-width: 768px) {
		.service_linian {
			padding-top: 10%;
		}
		.service_linian img {
			width: 100%;
		}
		.service_linian ul li {
			margin-bottom: 4%;
			width: 48%;
		}
		.service_linian ul li:nth-child(2n) {
			margin-right: 0;
		}
	}
	
	@media (max-width: 640px) {
		.service_linian {
			padding-top: 6%;
		}
		.service_linian ul {
			margin-top: 5%;
		}
		.service_linian ul li .text {
			padding: 5% 10px 5%;
			font-size: 14px;
		}
	}
	
	.service_liucheng {
		background: url(../img/service_bg2.jpg) no-repeat center center;
		min-height: 670px;
		padding: 60px 0 74px;
	}
	
	.service_liucheng .img {
		text-align: center;
		line-height: 0;
		margin-top: 74px;		
	}
	.service_liucheng .img2 {
		text-align: center;
		line-height: 0;
		margin-top: 24px;	
		display: none;	
	}
	
	@media (max-width: 991px) {
		.service_liucheng {
			padding: 0 0 7%;
			min-height: auto;
		}
	}
	
	@media (max-width: 640px) {
		.service_liucheng .img {
			margin-top: 5%;
		}
		.service_liucheng .img{
			display: none;
		}
		.service_liucheng .img2{
			display: block;
		}
	}
	
	.service_wangdian {
		padding: 66px 0 60px;
	}
	
	.service_wangdian .service_qh {
		text-align: center;
		margin-top: 30px;
		margin-bottom: 30px;
	}
	
	.service_wangdian .service_qh a {
		display: inline-block;
		background: #ebebeb;
		line-height: 38px;
		padding: 0 24px;
		color: #333333;
		font-size: 14px;
		margin-left: 2px;
	}
	
	.service_wangdian .service_qh a:last-child {
		margin-left: -5px;
	}
	
	.service_wangdian .service_qh a:hover,
	.service_wangdian .service_qh a.cur {
		color: #fff;
		background: #f48e27;
	}
	
	.service_wangdian .img {
		text-align: center;
		line-height: 0;
		margin-top: 35px;
	}
	
	@media (max-width: 991px) {
		.service_wangdian {
			padding: 6% 0;
		}
	}
	
	@media (max-width: 640px) {
		.service_wangdian .img {
			margin-top: 5%;
		}
	}
	
	@media (max-width: 414px) {
		.service_wangdian .service_qh {
			margin: 5% 0 5%;
		}
	}
	
	.about_banner {
		background: url(../img/about_banner.jpg) no-repeat center center / cover;
		padding-top: 295px;
	}
	
	.about_banner .name {
		width: 550px;
	}
	
	@media (max-width: 1024px) {
		.about_banner {
			min-height: 500px;
		}
	}
	
	@media (max-width: 768px) {
		.about_banner {
			min-height: 445px;
		}
	}
	
	@media (max-width: 640px) {
		.about_banner {
			min-height: auto;
			padding: 12% 0 6%;
		}
		.about_banner .name {
			width: 100%;
		}
	}
	
	.about_titlt {
		color: #0f3f86;
		font-size: 40px;
		font-weight: bold;
		text-align: center;
	}
	
	@media (max-width: 640px) {
		.about_titlt {
			font-size: 22px;
		}
	}
	
	@media (max-width: 414px) {
		.about_titlt {
			font-size: 17px;
		}
	}
	
	.about_name {
		text-align: center;
		color: #999999;
		font-size: 14px;
		line-height: 24px;
		margin-top: 10px;
	}
	
	.about_jianjie {
		padding: 50px 0 30px;
	}
	
	.about_jianjie .box {
		background:url(../img/bgimg.png) repeat-y;
		overflow: hidden;		
		margin-top: 20px;
	}
	
	.about_jianjie .left {
		/*position: relative;*/
		width: 29%;		
		padding: 5% 2.5% 5% 4%;
		line-height: 40px;
		color: #FFFFFF;
	}
	
	/*.about_jianjie .left .bg,
	.about_jianjie .left .img {
		line-height: 0;
	}
	
	.about_jianjie .left .img {
		position: absolute;
		left: 0;
		top: 19%;
		width: 95%;
	}*/
	
	.about_jianjie .right {
		width: 70%;
		padding: 0 0 0 3.65%;
		position: relative;
	}
	
	/*.about_jianjie .right .bg {
		position: absolute;
		left: 0;
		top: 0;
		z-index: 1;
	}*/
	
	/*.about_jianjie .right .text {		
		padding-top: 60px;
	}*/
	.about_jianjie .right .text img{
		width: 100%;
	}
	
	.about_jianjie .right .about_titlt {
		text-align: left;
	}
	
	@media (max-width: 414px) {
		.about_jianjie .right .about_titlt {
			text-align: center;
		}
	}
	
	.about_jianjie .right .t {
		margin-top: 25px;
		color: #666666;
		font-size: 14px;
		line-height: 28px;
	}
	
	.about_jianjie .right ol {
		margin-top: 30px;
	}
	
	.about_jianjie .right ol li {
		background: #fff;
		float: left;
		width: 30%;
		margin-right: 5%;
	}
	
	.about_jianjie .right ol li:last-child {
		margin-right: 0;
	}
	
	.about_jianjie .right ol li .img {
		line-height: 0;
		overflow: hidden;
	}
	
	.about_jianjie .right ol li .text {
		padding: 12px 17px;
		color: #666666;
		font-size: 14px;
		line-height: 22px;
	}
	@media only screen and (max-width: 1320px) {
		.about_jianjie .box{
			background: none;
		}
		.about_jianjie .left{
			color: #333333;
			font-size: 14px;
		}
	}
	@media (max-width: 1024px) {
		.about_jianjie .box{
			background: none;
		}
		.about_jianjie .right .text {
			padding-top: 20px;
		}
		.about_jianjie .right .t {
			margin-top: 10px;
			line-height: 24px;
		}
		.about_jianjie .right ol {
			margin-top: 15px;
		}
	}
	
	@media (max-width: 991px) {
		.about_jianjie {
			padding: 6% 0;
		}
		.about_jianjie .right {
			width: 100%;			
		}
		.about_jianjie .left {
			display: none;
		}
		/*.about_jianjie .right ol li {
			width: 32.5%;
			margin-right: 1.25%;
		}
		.about_jianjie .right ol li .text {
			padding: 5px 10px;
		}*/
	}
	
	@media (max-width: 768px) {
		.about_jianjie {
			padding: 0;
			background: #ececed;
		}
		.about_jianjie .left {
			display: none;
		}
		.about_jianjie .right {
			width: 100%;
			/*padding: 6% 0 8%;*/
		}
		.about_jianjie .right .text {
			padding-top: 0;
		}
	}
	
	@media (max-width: 640px) {
		.about_jianjie .right .text ol {
			margin-top: 5%;
		}
		.about_jianjie .right .text ol li {
			width: 48%;
			margin-bottom: 4%;
			margin-right: 4%;
		}
		.about_jianjie .right .text ol li:nth-child(2n) {
			margin-right: 0;
		}
		.about_jianjie .right .text ol li img {
			width: 100%;
		}
		.about_jianjie .right .text ol li .text p {
			height: 48px;
			overflow: hidden;
		}
	}
	
	.about_wenhua {
		/*background: url(../img/about_bg2.jpg) no-repeat center center / cover;*/
		padding: 20px 0 30px;
	}
	
	.about_wenhua ol {
		/*width: 1066px;*/
		margin: 50px auto 0;
	}
	
	.about_wenhua ol li {
		position: relative;
		float: left;
		width: 30%;
		margin-right: 4%;
		border: 10px solid #004A9F;
	}
	
	.about_wenhua ol li:last-child {
		margin-right: 0;
	}
	
	.about_wenhua ol li .img {
		position: relative;
		/*border-radius: 50%;*/
		overflow: hidden;
	}
	
	.about_wenhua ol li .img em {
		/*border-radius: 50%;*/
		display: block;
		line-height: 0;
		overflow: hidden;
	}
	
	.about_wenhua ol li .img span {
		position: absolute;
		right: 15%;
		top: 18%;
		color: #fff;
		font-size: 24px;
		font-weight: bold;
		font-family: arial;
	}
	
	.about_wenhua ol li  .text {
		/*position: absolute;*/
		left: 0;
		/*top: 50%;*/
		width: 100%;
		height: 50px;
		/*margin-top: -25px;*/
		background-color: #004A9F;
		/*background: url(../img/about_pic4.png) no-repeat center center / cover;*/
		text-align: center;
		line-height: 50px;
		color: #fff;
		font-size: 16px;
		text-overflow: ellipsis;
		overflow: hidden;
		white-space: nowrap;
		
	}
	
	.about_wenhua ol li .img img {
		width: 100%;
	}
	
	.about_wenhua ol li .sz {
		position: absolute;
		right: -10%;
		top: -10%;
		width: 25%;
	}
	
	.about_wenhua .cplb {
		margin-top: 3%;
	}
	
	.about_wenhua .cplb ul li {
		width: 32.29166%;
		float: left;
		margin-right: 1.5625%;
	}
	
	.about_wenhua .cplb a .text {
		position: absolute;
		left: 35px;
		top: 30px;
		width: 100%;
	}
	
	.about_wenhua .cplb a {
		display: block;
		width: 100%;
		position: relative;
	}
	
	.about_wenhua .cplb a .text h3:before {
		content: "";
		position: absolute;
		left: 0;
		bottom: 0;
		width: 28px;
		height: 2px;
		background: #cfcfcf;
	}
	
	.about_wenhua .cplb a .text h3 {
		color: #012953;
	}
	
	.about_wenhua .cplb ul li:nth-child(3) {
		margin-right: 0;
	}
	
	.about_wenhua .cplb a .text h3 {
		font-size: 20px;
		line-height: 22px;
		padding-bottom: 16px;
		margin-bottom: 10px;
		position: relative;
	}
	
	.about_wenhua .cplb a .text span {
		font-size: 15px;
		font-family: arial;
		text-transform: uppercase;
		line-height: 20px;
		color: #2d5580;
	}
	
	@media (max-width: 1024px) {
		.about_wenhua ol {
			width: 100%;
		}
	}
	
	@media (max-width: 991px) {
		.about_wenhua {
			padding: 6% 0;
		}
		.about_wenhua ol {
			margin-top: 7%;
		}
	}
	
	@media (max-width: 768px) {
		.about_wenhua ol li {
			width: 30.5%;
			margin-right: 4.25%;
		}
		.about_wenhua .cplb {
			width: 100%;
		}
	}
	
	@media (max-width: 640px) {
		.about_wenhua {
			padding: 7% 0 4%;
		}
		.about_wenhua ol {
			width: 100%;
		}
		.about_wenhua ol li {
			width: 60%;
			position: relative;
			/*left: 50%;
    margin-left: -30%;*/
			margin-right: 0;
			float: none;
			margin-bottom: 6%;
		}
		.about_wenhua ol li .sz {
			position: absolute;
			right: auto;
			left: -20%;
			top: 0;
		}
	}
	
	@media (max-width: 414px) {
		.about_wenhua ol li {
			width: 100%;
		}
		.about_wenhua ol li .img span {
			font-size: 14px;
		}
		.about_wenhua ol li .img .text {
			font-size: 12px;
			line-height: 32px;
			height: 32px;
			margin-top: -16px;
		}
		.about_wenhua .cplb ul li {
			width: 100%;
		}
	}
	
	.about_course {
		padding: 55px 0 65px;
	}
	
	.about_course .course_box {
		background: url(../img/course_bg1.jpg) repeat-y center top;
		margin-top: 52px;
		position: relative;
	}
	
	.about_course .course_box:before {
		content: "";
		position: absolute;
		left: 50%;
		top: 0;
		margin-left: -13.5px;
		width: 27px;
		height: 27px;
		background: url(../img/g_course_bg1.jpg) no-repeat center center;
	}
	
	.about_course .course_box ul {
		padding-top: 35px;
	}
	
	.about_course .course_box ul li {
		float: right;
		width: 47%;
		background: #eeeeee;
		position: relative;
		margin-bottom: 5%;
		padding: 15px 0;
	}
	
	.about_course .course_box ul li:before {
		content: "";
		position: absolute;
		left: -46px;
		top: 50%;
		margin-top: -7.5px;
		width: 28px;
		height: 15px;
		background: url(../img/g_course_bg2.jpg) no-repeat center center;
	}
	
	.about_course .course_box ul li span {
		color: #0f3f86;
		font-size: 35px;
		display: inline-block;
		float: left;
		width: 20%;
		text-align: center;
		position: absolute;
		left: 0;
		top: 50%;
		transform: translateY(-50%);
		-webkit-transform: translateY(-50%);
		-o-transform: translateY(-50%);
		-moz-transform: translateY(-50%);
		-ms-transform: translateY(-50%);
	}
	
	.about_course .course_box ul li .text {
		float: right;
		display: inline-block;
		width: 80%;
		padding-right: 17px;
	}
	
	.about_course .course_box ul li .text .bt {
		color: #000000;
		font-size: 20px;
		font-weight: bold;
		text-overflow: ellipsis;
		overflow: hidden;
		white-space: nowrap;
	}
	
	.about_course .course_box ul li .text .t {
		color: #666666;
		font-size: 16px;
		line-height: 24px;
	}
	
	.about_course .course_box ul li:first-child+li {
		margin-top: 6%;
	}
	
	.about_course .course_box ul li:nth-child(2n) {
		float: left;
	}
	
	.about_course .course_box ul li:nth-child(2n)::before {
		background: url(../img/g_course_bg3.jpg) no-repeat center center;
		left: auto;
		right: -46px;
	}
	
	.about_course .course_box ul li:nth-child(2n) span {
		left: auto;
		right: 0;
	}
	
	.about_course .course_box ul li:nth-child(2n) .text {
		float: left;
		text-align: right;
		padding-right: 0;
		padding-left: 17px;
	}
	
	@media (max-width: 1024px) {
		.about_course .course_box ul li span {
			font-size: 24px;
		}
		.about_course .course_box ul li .text .bt {
			font-size: 18px;
		}
		.about_course .course_box ul li .text .t {
			font-size: 14px;
			line-height: 20px;
		}
		.about_course .course_box ul li:before {
			left: -37px;
		}
		.about_course .course_box ul li:nth-child(2n)::before {
			right: -37px;
		}
	}
	
	@media (max-width: 991px) {
		.about_course {
			padding: 6% 0;
		}
		.about_course .course_box {
			margin-top: 5%;
		}
		.about_course .course_box ul li:before {
			left: -36px;
		}
		.about_course .course_box ul li:nth-child(2n)::before {
			right: -36px;
		}
	}
	
	@media (max-width: 768px) {
		.about_course {
			padding-top: 8%;
		}
		.about_course .course_box {
			background: none;
		}
		.about_course .course_box ul {
			padding-top: 0;
		}
		.about_course .course_box ul li {
			width: 100%;
			margin-bottom: 3%;
		}
		.about_course .course_box ul li:before {
			display: none;
		}
		.about_course .course_box ul li:first-child+li {
			margin-top: 0;
		}
	}
	
	@media (max-width: 414px) {
		.about_course .course_box ul li .text .bt {
			font-size: 15px;
		}
		.about_course .course_box ul li .text {
			padding-right: 13px;
		}
		.about_course .course_box ul li:nth-child(2n) .text {
			padding-left: 13px;
		}
	}
	
	.about_tuandui {
		padding: 60px 0 80px;
	}
	
	.about_tuandui ol {
		margin-top: 45px;
	}
	
	.about_tuandui ol li {
		width: 22.2%;
		float: left;
		position: relative;
		margin-right: 3.7333%;
	}
	
	.about_tuandui ol li:last-child {
		margin-right: 0;
	}
	
	.about_tuandui ol li .img {
		line-height: 0;
		overflow: hidden;
	}
	
	.about_tuandui ol li .text {
		position: absolute;
		left: 0;
		bottom: 0;
		width: 100%;
		line-height: 54px;
		text-align: center;
		color: #fff;
		font-size: 14px;
		background: rgba(0, 0, 0, 0.5);
	}
	
	@media (max-width: 991px) {
		.about_tuandui {
			padding: 6% 0 7%;
		}
		.about_tuandui ol {
			margin-top: 4.5%;
		}
	}
	
	@media (max-width: 640px) {
		.about_tuandui ol li {
			margin-right: 0;
			margin-bottom: 2%;
			width: 49%;
		}
		.about_tuandui ol li:nth-child(2n) {
			float: right;
		}
		.about_tuandui ol li img {
			width: 100%;
		}
		.about_tuandui ol li .text {
			line-height: 36px;
		}
	}
	
	.about_fuli .ol_list {
		background: url(../img/fu_bg.jpg);
		width: 100%;
		height: 192px;
		border-radius: 5px;
		margin-top: 45px;
	}
	
	.about_fuli .ol_list li {
		float: left;
		width: 20%;
		text-align: center;
		padding-top: 36px;
		background: url(../img/fu_bg2.jpg) no-repeat right center;
		height: 192px;
	}
	
	.about_fuli .ol_list li .img {
		width: 32%;
		margin: 0 auto;
		line-height: 0;
	}
	
	.about_fuli .ol_list li .text {
		color: #fff;
		font-size: 16px;
		margin-top: 15px;
	}
	
	.about_fuli .ol_list li:last-child {
		background: none;
	}
	
	.about_fuli .ul_list {
		margin-top: 70px;
	}
	
	.about_fuli .ul_list li {
		width: 32.5%;
		float: left;
		margin-right: 0.5%;
	}
	
	.about_fuli .ul_list li:last-child {
		margin-right: 0;
	}
	
	.about_fuli .ul_list li .img {
		line-height: 0;
		margin-bottom: 1.5%;
		overflow: hidden;
	}
	
	.about_fuli .ul_list li img {
		width: 100%;
	}
	
	@media (max-width: 991px) {
		.about_fuli .ol_list {
			margin-top: 5%;
		}
		.about_fuli .ul_list {
			margin-top: 6%;
		}
	}
	
	@media (max-width: 768px) {
		.about_fuli .ol_list {
			height: auto;
		}
		.about_fuli .ol_list li {
			height: auto;
			padding: 5% 0;
		}
	}
	
	@media (max-width: 640px) {
		.about_fuli .ol_list li {
			padding: 4% 0;
		}
		.about_fuli .ol_list li .text {
			font-size: 14px;
		}
		.about_fuli .ul_list li {
			width: 49.5%;
			margin-right: 0;
		}
		.about_fuli .ul_list li:nth-child(2n) {
			float: right;
		}
		.about_fuli .ul_list li:last-child {
			margin-top: 0.3%;
			width: 100%;
		}
		.about_fuli .ul_list li:last-child .img {
			width: 49.5%;
			float: left;
		}
		.about_fuli .ul_list li:last-child .img:last-child {
			float: right;
		}
	}
	
	@media (max-width: 480px) {
		.about_fuli .ol_list li {
			background: none;
			padding: 4% 0;
		}
		.about_fuli .ol_list li .text {
			font-size: 12px;
			margin-top: 5px;
		}
	}
	
	.about_gangwei {
		padding: 60px 0 80px;
	}
	
	.about_gangwei .zhaopin_box {
		margin-top: 32px;
		box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
	}
	
	.about_gangwei .zhaopin_box .list_nav {
		width: 30%;
	}
	
	.about_gangwei .zhaopin_box .list_nav li {
		padding: 35px 25px 25px 30px;
		float: left;
		width: 100%;
		cursor: pointer;
	}
	
	.about_gangwei .zhaopin_box .list_nav li .text {
		display: inline-block;
		float: left;
		width: 70%;
	}
	
	.about_gangwei .zhaopin_box .list_nav li .text h3 {
		color: #666666;
		font-size: 18px;
		font-weight: normal;
		text-overflow: ellipsis;
		overflow: hidden;
		white-space: nowrap;
	}
	
	.about_gangwei .zhaopin_box .list_nav li .text p {
		margin-top: 5px;
		color: #d0d0d0;
		font-size: 14px;
		font-family: arial;
		text-overflow: ellipsis;
		overflow: hidden;
		white-space: nowrap;
	}
	
	.about_gangwei .zhaopin_box .list_nav li .icon {
		float: right;
		display: inline-block;
		background: #999999;
		line-height: 25px;
		border-radius: 50px;
		color: #fff;
		font-size: 14px;
		padding: 0 15px;
	}
	
	.about_gangwei .zhaopin_box .list_nav li:nth-child(2n) {
		background: #f9f9f9;
	}
	
	.about_gangwei .zhaopin_box .list_nav li:hover,
	.about_gangwei .zhaopin_box .list_nav li.cur {
		background: #f9942f;
	}
	
	.about_gangwei .zhaopin_box .list_nav li:hover .text h3,
	.about_gangwei .zhaopin_box .list_nav li.cur .text h3,
	.about_gangwei .zhaopin_box .list_nav li:hover .text p,
	.about_gangwei .zhaopin_box .list_nav li.cur .text p {
		color: #fff;
	}
	
	.about_gangwei .zhaopin_box .list_nav li:hover .icon,
	.about_gangwei .zhaopin_box .list_nav li.cur .icon {
		background: #fff;
		color: #f9942f;
	}
	
	.about_gangwei .zhaopin_box .zp_box {
		float: right;
		width: 70%;
		padding: 2.5% 4%;
	}
	
	.about_gangwei .zhaopin_box .zp_box .zp_con {
		display: none;
	}
	
	.about_gangwei .zhaopin_box .zp_box h3 {
		color: #666;
		font-weight: normal;
		font-size: 16px;
	}
	
	.about_gangwei .zhaopin_box .zp_box .t {
		margin-top: 8px;
		line-height: 24px;
	}
	
	.about_gangwei .zhaopin_box .zp_box .zp_con:first-child {
		display: block;
	}
	
	@media (max-width: 1024px) {
		.about_gangwei .zhaopin_box .list_nav li {
			padding: 25px 20px 25px 20px;
			float: left;
			width: 100%;
			cursor: pointer;
		}
	}
	
	@media (max-width: 991px) {
		.about_gangwei {
			padding: 6% 0 8%;
		}
		.about_gangwei .zhaopin_box {
			margin-top: 3.2%;
		}
	}
	
	@media (max-width: 768px) {
		.about_gangwei .zhaopin_box .list_nav li {
			padding: 8% 3%;
		}
		.about_gangwei .zhaopin_box .list_nav li .text h3 {
			font-size: 14px;
		}
		.about_gangwei .zhaopin_box .list_nav li .text p {
			margin-top: 5px;
			font-size: 12px;
		}
		.about_gangwei .zhaopin_box .list_nav li .icon {
			font-size: 12px;
			padding: 0 10px;
		}
	}
	
	@media (max-width: 640px) {
		.about_gangwei .zhaopin_box .list_nav li .text {
			width: 100%;
		}
		.about_gangwei .zhaopin_box .list_nav li .text h3 {
			text-align: center;
		}
		.about_gangwei .zhaopin_box .list_nav li .icon {
			float: left;
			margin-top: 8px;
			position: relative;
			left: 50%;
			transform: translateX(-50%);
		}
	}
	
	@media (max-width: 480px) {
		.about_gangwei .zhaopin_box .list_nav li .text p {
			display: none;
		}
	}
	
	@media (max-width: 375px) {
		.about_gangwei .zhaopin_box .list_nav li .text h3 {
			font-size: 13px;
		}
	}
	
	.service_wenti {
		padding: 50px 0 60px;
		background: #f1efef;
	}
	
	.service_wenti .suosou {
		width: 34%;
		margin: 38px auto 0;
		border: 1px solid #e7e7e7;
		border-radius: 5px;
	}
	
	.service_wenti .suosou input {
		outline: none;
		-webkit-appearance: none;
	}
	
	.service_wenti .suosou .text {
		float: left;
		width: 76%;
		border: none;
		font-size: 14px;
		padding: 4.5% 15px;
	}
	
	.service_wenti .suosou .btn {
		background: url(../img/btn.jpg) no-repeat center center / cover;
		border: none;
		width: 24%;
		padding: 4.6% 0;
	}
	
	.service_wenti .ol_list {
		text-align: center;
		margin-top: 54px;
	}
	
	.service_wenti .ol_list a {
		display: inline-block;
		background: #f7f7f7;
		line-height: 44px;
		color: #333333;
		font-size: 18px;
		padding: 0 30px;
	}
	
	.service_wenti .ol_list a:hover,
	.service_wenti .ol_list a.cur {
		background: #014090;
		color: #fff;
	}
	
	.service_wenti .qa_box {
		margin-top: 50px;
	}
	
	.service_wenti .qa_box ul li {
		float: left;
		width: 100%;
		background: #fff;
		padding: 4% 3%;
		box-shadow: 0 0 10px rgba(0, 0, 0, .2);
		margin-bottom: 20px;
	}
	
	.service_wenti .qa_box ul li .bt {
		color: #444444;
		font-size: 18px;
		line-height: 24px;
		background: url(../img/qa_icon1.png) no-repeat left center;
		padding-left: 40px;
	}
	
	.service_wenti .qa_box ul li .t {
		margin-top: 18px;
		color: #666666;
		font-size: 14px;
		line-height: 24px;
	}
	
	.service_wenti .table {
		margin-top: 50px;
	}
	
	.service_wenti .table table {
		border: 1px solid #e9e9e9;
	}
	
	.service_wenti .table table tr {
		border: 1px solid #e9e9e9;
	}
	
	.service_wenti .table table tr th {
		background: #fcfcfc;
		font-weight: normal;
		color: #797979;
		font-size: 16px;
		padding: 1.5% 10px;
	}
	
	.service_wenti .table table tr td {
		padding: 1.5% 10px;
		color: #797979;
		font-size: 14px;
		text-align: center;
	}
	
	.service_wenti .table table tr td a {
		line-height: 0;
		display: block;
	}
	
	@media (max-width: 991px) {
		.service_wenti {
			padding: 6% 0;
		}
		.service_wenti .suosou {
			margin-top: 3.8%;
		}
		.service_wenti .ol_list {
			margin-top: 5.4%;
		}
		.service_wenti .qa_box {
			margin-top: 5%;
		}
		.service_wenti .table {
			margin-top: 5%;
		}
	}
	
	@media (max-width: 768px) {
		.service_wenti .suosou {
			width: 50%;
		}
	}
	
	@media (max-width: 640px) {
		.service_wenti .suosou {
			width: 60%;
		}
		.service_wenti .suosou .text {
			padding: 3% 10px;
		}
		.service_wenti .suosou .btn {
			padding: 3.2% 0;
		}
		.service_wenti .ol_list a {
			font-size: 14px;
			padding: 0 10px;
			line-height: 34px;
		}
		.service_wenti .qa_box ul li .bt {
			font-size: 16px;
			padding-left: 30px;
		}
		.service_wenti .qa_box ul li .t {
			margin-top: 8px;
		}
	}
	
	@media (max-width: 414px) {
		.service_wenti .suosou {
			width: 80%;
		}
		.service_wenti .suosou .btn {
			padding: 3.7% 0;
		}
		.service_wenti .ol_list a {
			float: left;
			font-size: 14px;
			padding: 0 6px;
			line-height: 34px;
			margin-right: 3px;
			margin-bottom: 5px;
		}
		.service_wenti .table table tr th {
			font-size: 14px;
			padding: 3% 5px;
		}
		.service_wenti .table table tr td {
			padding: 3% 5px;
			font-size: 12px;
		}
		.service_wenti .table table tr td a {
			width: 54%;
			margin: 0 auto;
		}
	}
	
	@media (max-width: 375px) {
		.service_wenti .ol_list a {
			font-size: 12px;
		}
	}
	
	.pro_banner {
		background: url(../img/banner_pro1.jpg) no-repeat center center / cover;
		/*padding-top: 380px;*/
	}
	
	.pro_banner .title_box {
		background: url(../img/top_bg4.png) no-repeat center center / cover;
		width: 969px;
		position: relative;
		margin: 110px auto 0;
		text-align: center;
		/*padding-left: 184.5px;*/
	}
	
	.pro_banner .title_box a {
		display: block;
		height: 109px;
		float: left;
		width: 100px;
		border-right: 1px solid #659bdb;
		padding-top: 26px;
	}
	
	.pro_banner .title_box a span {
		display: block;
		height: 30px;
	}
	
	.pro_banner .title_box a em {
		font-style: normal;
		color: #ffffff;
		font-size: 14px;
		margin-top: 8px;
		display: block;
	}
	
	.pro_banner .title_box a:last-child {
		border-color: rgba(0, 0, 0, 0);
	}
	
	.pro_banner .title_box a:hover,
	.pro_banner .title_box a.cur {
		background: #124490;
	}
	
	@media (max-width: 1024px) {
		.pro_banner .title_box {
			margin-top: 7%;
		}
	}
	
	@media (max-width: 991px) {
		.pro_banner .title_box {
			width: 100%;
		}
	}
	
	@media (max-width: 768px) {
		.pro_banner .title_box {
			padding-left: 0;
		}
		.pro_banner .title_box a {
			width: 20%;
		}
	}
	
	@media (max-width: 640px) {
		.pro_banner {
			min-height: 355px;
		}
		.pro_banner .title_box {
			padding-left: 0;
		}
		.pro_banner .title_box a {
			width: 20%;
		}
	}
	
	@media (max-width: 480px) {
		.pro_banner .title_box {
			background-size: 100% cover;
			height: auto;
		}
		.pro_banner .title_box a {
			height: auto;
			padding-top: 3%;
			padding-bottom: 3%;
		}
		.pro_banner .title_box a span {
			width: 40%;
			height: auto;
		}
		.pro_banner .title_box a em {
			margin-top: 5px;
		}
	}
	
	@media (max-width: 414px) {
		.pro_banner .title_box a em {
			font-size: 12px;
		}
	}
	
	@media (max-width: 1024px) {
		.pro_banner {
			padding-top: 22%;
		}
	}
	
	.pro_nav {
		background: #efefef;
	}
	
	.pro_nav a {
		line-height: 56px;
		display: block;
		float: left;
		padding: 0 30px;
		color: #888888;
		font-size: 14px;
	}
	
	.pro_nav a:hover,
	.pro_nav a.cur {
		background: #dfdfdf;
		color: #000;
	}
	
	@media (max-width: 480px) {
		.pro_nav a {
			line-height: 40px;
			padding: 0 2%;
			font-size: 13px;
		}
	}
	
	@media (max-width: 360px) {
		.pro_nav a {
			font-size: 12px;
		}
	}
	
	.pro_box {
		margin-top: 50px;
		margin-bottom: 60px;
	}
	
	.pro_box ul li {
		float: left;
		width: 30.5%;
		margin-bottom: 4%;
		margin-right: 4.25%;
	}
	
	.pro_box ul li:nth-child(3n) {
		margin-right: 0;
	}
	
	.pro_box ul li .img {
		line-height: 0;
		overflow: hidden;
	}
	
	.pro_box ul li .img img {
		width: 100%;
	}
	
	.pro_box ul li .text {
		border: 1px solid #eeeeee;
		padding: 7px 18px 0 18px;
		text-align: center;
	}
	
	.pro_box ul li .text .cplb_c {
		border-top: 1px solid #EEEDED;
		width: 100%;
		margin-top: 8px;
		overflow: hidden;
	}
	
	.pro_box ul li .text .cplb_c .cplb_cl {
		float: left;
		color: #777777;
		background: url(../img/kf.png) 10px 10px no-repeat;
		display: block;
		border-right: 1px solid #EEEDED;
		width: 50%;
		/*padding-left: 35px;*/
		height: 38px;
		line-height: 38px;
	}
	
	.pro_box ul li .text .cplb_c .cplb_cr {
		float: left;
		color: #FFFFFF;
		display: block;
		width: 50%;
		text-align: center;
		height: 38px;
		line-height: 38px;
	}
	
	.pro_box ul li .text .cplb_cr {
		background-color: #014090;
	}
	
	.pro_box ul li .text h3 {
		color: #888888;
		font-size: 16px;
		text-transform: uppercase;
		font-family: arial;
		font-weight: normal;
		text-overflow: ellipsis;
		overflow: hidden;
		white-space: nowrap;
		font-weight: bold;
	}
	
	.pro_box ul li .text p {
		color: #888888;
		font-size: 13px;
		margin-top: 5px;
		text-overflow: ellipsis;
		overflow: hidden;
		white-space: nowrap;
		text-align: left;
	}
	/*.pro_box ul li:hover .text {
  background: #2366a0;
  border-color: #2366a0;
}
.pro_box ul li:hover .text h3,
.pro_box ul li:hover .text .cplb_c .cplb_cl,
.pro_box ul li:hover .text .cplb_c .cplb_cr,
.pro_box ul li:hover .text p {
  color: #fff;
}

.pro_box ul li:hover .text .cplb_c .cplb_cl{
	background: url(../img/kfh.png) 10px 10px no-repeat;
}
*/
	
	.pro_box .more_btn {
		display: block;
		width: 100%;
		background: #f2f2f2;
		text-align: center;
		line-height: 46px;
		color: #666666;
		font-size: 15px;
		font-family: arial;
		text-transform: uppercase;
	}
	
	.pro_box .more_btn span {
		display: inline-block;
		background: url(../img/more_icon1.png) no-repeat right center;
		padding-right: 40px;
	}
	
	@media (max-width: 991px) {
		.pro_box {
			margin: 5% 0 6%;
		}
	}
	
	@media (max-width: 768px) {
		.pro_box ul li {
			margin-bottom: 2%;
			width: 32%;
			margin-right: 2%;
		}
		.pro_box ul li .text {
			padding: 10px;
		}
	}
	
	@media (max-width: 640px) {
		.pro_box ul li {
			margin-right: 0;
			width: 49%;
		}
		/*.pro_box ul li:nth-child(2n) {
			float: right;
		}*/
		.pro_box ul li .text p {
			margin-top: 2px;
		}
	}
	
	@media (max-width: 375px) {
		.pro_box ul li {
			width: 100%;
			margin-bottom: 4%;
		}
	}
	
	.about_honor {
		/*background: url(../img/honor_bg.jpg) no-repeat center center / cover;*/
		padding: 60px 0 85px;
	}
	
	.about_honor .left {
		width: 39%;
		float: left;
		padding-top: 15px;
	}
	
	.about_honor .left .service_yw {
		text-align: left;
	}
	
	.about_honor .left .service_tit {
		text-align: left;
	}
	
	.about_honor .left .t {
		margin-top: 30px;
		color: #666666;
		font-size: 14px;
		line-height: 28px;
	}
	
	.about_honor .right {
		/*width: 49.5%;*/
		float: right;
		margin-right: 5%;
	}
	
	@media (max-width: 1024px) {
		.about_honor .left {
			width: 34%;
		}
	}
	
	@media (max-width: 991px) {
		.about_honor {
			padding: 6% 0 8.5%;
		}
		.about_honor .right {
			margin-right: 0;
		}
	}
	
	@media (max-width: 768px) {
		.about_honor .left {
			width: 45%;
		}
		.about_honor .left .t {
			margin-top: 10px;
		}
		.about_honor .right {
			margin-right: 0;
		}
	}
	
	@media (max-width: 640px) {
		.about_honor .left {
			width: 100%;
			margin-bottom: 4%;
		}
		.about_honor .left .service_yw,
		.about_honor .left .service_tit,
		.about_honor .left .t {
			text-align: center;
		}
		.about_honor .right {
			margin: 0 auto;
			float: none;
			width: 55%;
		}
	}
	
	@media (max-width: 414px) {
		.about_honor .right {
			width: 80%;
		}
	}
	
	.about_honor_con {
		background: url(../img/honor_bg2.jpg) no-repeat center center / cover;
		padding: 40px 0 126px;
	}
	
	.about_honor_con .service_tit {
		border-bottom: 1px solid #e9e9e9;
		padding-bottom: 30px;
	}
	
	.about_honor_con .honor_list {
		width: 1304px;
		margin: 60px auto 0;
	}
	
	.about_honor_con .honor_list .text {
		padding: 0 13px;
	}
	
	.about_honor_con .honor_list .text .img {
		line-height: 0;
	}
	
	.about_honor_con .honor_list .text .img img {
		width: 100%;
	}
	
	.about_honor_con .honor_list .text .t {
		background: #666666;
		width: 100%;
		line-height: 40px;
		text-align: center;
		color: #fff;
		font-size: 14px;
	}
	
	.about_honor_con .honor_list .slick-prev,
	.about_honor_con .honor_list .slick-next {
		width: 103px;
		height: 40px;
		top: auto;
		margin-top: 0;
		bottom: -62px;
		border: none;
	}
	
	.about_honor_con .honor_list .slick-prev {
		background: url(../img/honor_prev.png) no-repeat center center / cover;
		left: 536px;
	}
	
	.about_honor_con .honor_list .slick-next {
		background: url(../img/honor_next.png) no-repeat center center / cover;
		right: 536px;
	}
	
	@media (max-width: 1024px) {
		.about_honor_con .honor_list {
			width: 100%;
		}
		.about_honor_con .honor_list .slick-prev {
			left: 38.5%;
		}
		.about_honor_con .honor_list .slick-next {
			right: 38.5%;
		}
	}
	
	@media (max-width: 991px) {
		.about_honor_con {
			padding: 4% 0 12.6%;
		}
		.about_honor_con .honor_list {
			margin-top: 5%;
		}
	}
	
	@media (max-width: 768px) {
		.about_honor_con .honor_list .slick-prev {
			left: 32%;
		}
		.about_honor_con .honor_list .slick-next {
			right: 32%;
		}
	}
	
	@media (max-width: 640px) {
		.about_honor_con {
			padding-bottom: 18%;
		}
	}
	
	@media (max-width: 480px) {
		.about_honor_con {
			padding-top: 8%;
			padding-bottom: 23%;
		}
		.about_honor_con .service_tit {
			padding-bottom: 5%;
		}
		.about_honor_con .honor_list .slick-prev {
			left: 25%;
		}
		.about_honor_con .honor_list .slick-next {
			right: 25%;
		}
	}
	
	@media (max-width: 375px) {
		.about_honor_con {
			padding-bottom: 27%;
		}
		.about_honor_con .honor_list .slick-prev {
			left: 21%;
		}
		.about_honor_con .honor_list .slick-next {
			right: 21%;
		}
	}
	
	@media (max-width: 320px) {
		.about_honor_con {
			padding-bottom: 30%;
		}
		.about_honor_con .honor_list .slick-prev {
			left: 16%;
		}
		.about_honor_con .honor_list .slick-next {
			right: 16%;
		}
	}
	
	.news_banner {
		background: url(../img/news_banner.jpg) no-repeat center center / cover;
		padding-top: 360px;
	}
	/*.news_banner .title_box {
  background: url(../img/top_bg2.png) no-repeat center center;
  width: 431px;
  padding-left: 65.5px;
}*/
	
	@media (max-width: 1024px) {
		.news_banner {
			padding-top: 20%;
		}
	}
	
	@media (max-width: 640px) {
		.news_banner {
			padding-top: 22%;
		}
	}
	
	@media (max-width: 480px) {
		/*.news_banner .title_box {
    width: 100%;
    padding-left: 0;
  }
  .news_banner .title_box a {
    width: 50%;
  }*/
	}
	
	.news_box {
		background: #f1efef;
		padding: 70px 0 60px;
	}
	
	.news_box .left {
		width: 75%;
		float: left;
	}
	
	.news_box .left ul li {
		margin-bottom: 3%;
		float: left;
		width: 100%;
		background: #fff;
		padding: 3% 0;
	}
	
	.news_box .left ul li .data {
		width: 17%;
		margin: 0 3%;
		padding: 2.7% 0 3.3%;
		float: left;
		text-align: center;
		background: #f9f9f9;
		transition: all .5s;
	}
	
	.news_box .left ul li .data p {
		color: #124189;
		font-size: 49px;
		font-family: arial;
	}
	
	.news_box .left ul li .data span {
		color: #8c8c8c;
		font-size: 14px;
	}
	
	.news_box .left ul li .text {
		float: right;
		width: 77%;
		padding-right: 3%;
	}
	
	.news_box .left ul li .text h3 {
		color: #18478e;
		font-size: 18px;
		font-weight: normal;
		text-overflow: ellipsis;
		overflow: hidden;
		white-space: nowrap;
		transition: all .5s;
	}
	
	.news_box .left ul li .text em {
		display: none;
	}
	
	.news_box .left ul li .text p {
		margin-top: 12px;
		color: #777777;
		font-size: 14px;
		line-height: 24px;
		height: 48px;
		overflow: hidden;
	}
	
	.news_box .left ul li .text span {
		margin-top: 15px;
		display: inline-block;
		border: 1px solid #e8e8e8;
		line-height: 32px;
		padding: 0 18px;
		color: #999999;
		font-size: 14px;
	}
	
	.news_box .left ul li:hover .text h3 {
		color: #e60012;
	}
	
	.news_box .left ul li:hover .data {
		background: #124189;
	}
	
	.news_box .left ul li:hover .data p,
	.news_box .left ul li:hover .data span {
		color: #fff;
	}
	
	.news_box .left .more_btn {
		margin: 1% auto 0;
		width: 11%;
		display: block;
	}
	
	.news_box .left .news_con {
		background: #fff;
		padding: 5% 4%;
	}
	
	.news_box .left .news_con h3 {
		text-align: center;
		color: #666666;
		font-size: 24px;
		font-weight: normal;
		border-bottom: 1px solid #f1efef;
		padding-bottom: 3%;
	}
	
	.news_box .left .news_con .name {
		text-align: center;
		color: #a8a8a8;
		font-size: 14px;
		margin-top: 2.2%;
	}
	
	.news_box .left .news_con .name span {
		display: inline-block;
		margin: 0 5px;
	}
	
	.news_box .left .news_con .con {
		color: #666666;
		font-size: 14px;
		line-height: 30px;
		padding: 4% 0 0;
	}
	
	.news_box .left .news_con .bottom {
		margin-top: 4%;
	}
	
	.news_box .left .news_con .bottom ol {
		float: left;
		width: 85%;
	}
	
	.news_box .left .news_con .bottom ol li {
		float: left;
		padding: 2% 0;
		width: 100%;
		border-bottom: 1px dashed #e9e9e9;
	}
	
	.news_box .left .news_con .bottom ol li:last-child {
		border-bottom: none;
	}
	
	.news_box .left .news_con .bottom ol li a {
		display: inline-block;
		color: #777777;
		font-size: 14px;
	}
	
	.news_box .left .news_con .bottom ol li a span {
		display: inline-block;
		color: #333333;
		font-size: 16px;
	}
	
	.news_box .left .news_con .bottom .return {
		margin-top: 4%;
		float: right;
		display: inline-block;
		background: #17478e;
		color: #fff;
		font-size: 14px;
		line-height: 34px;
		border-radius: 4px;
		padding: 0 20px;
	}
	
	@media (max-width: 414px) {
		.news_box .left .news_con .bottom .return {
			margin-top: 0;
		}
	}
	
	@media (max-width: 480px) {
		.news_box .left .news_con h3 {
			font-size: 16px;
		}
	}
	
	@media (max-width: 414px) {
		.news_box .left .news_con .bottom ol {
			display: none;
		}
	}
	
	@media (max-width: 375px) {
		.news_box .left .news_con h3 {
			border-bottom: none;
			padding-bottom: 0;
		}
		.news_box .left .news_con .name {
			display: none;
		}
	}
	
	.news_box .right {
		width: 22%;
		float: right;
	}
	
	.news_box .right .right_nav {
		margin-bottom: 20px;
	}
	
	.news_box .right .right_nav h3 {
		color: #094293;
		font-size: 18px;
		font-weight: normal;
	}
	
	.news_box .right .right_nav ul {
		margin-top: 10px;
	}
	
	.news_box .right .right_nav ul li {
		float: left;
		width: 100%;
		line-height: 30px;
	}
	
	.news_box .right .right_nav ul li a {
		display: block;
		width: 100%;
		color: #666666;
		font-size: 14px;
		background: url(../img/icon_1.png) no-repeat right center;
	}
	
	.news_box .right .right_nav ol li {
		float: left;
		width: 100%;
		border-bottom: 1px solid #e0e0e0;
		padding: 15px 0;
	}
	
	.news_box .right .right_nav ol li a {
		display: block;
		color: #666666;
		font-size: 14px;
		line-height: 24px;
		height: 48px;
		overflow: hidden;
	}
	
	.news_box .right .right_nav ol li .t {
		margin-top: 8px;
		color: #999999;
		font-size: 12px;
	}
	
	.news_box .right .right_nav ol li:last-child {
		border-bottom: none;
	}
	
	@media (max-width: 991px) {
		.news_box {
			padding: 6% 0;
		}
	}
	
	@media (max-width: 768px) {
		.news_box .left {
			width: 100%;
		}
		.news_box .left .more_btn {
			width: 14%;
		}
		.news_box .right {
			display: none;
		}
	}
	
	@media (max-width: 640px) {
		.news_box .left ul li .data {
			display: none;
		}
		.news_box .left ul li .text {
			width: 100%;
			padding: 0 15px;
		}
		.news_box .left ul li .text em {
			display: block;
			font-style: normal;
			margin-top: 5px;
			font-size: 12px;
			color: #666;
		}
		.news_box .left ul li .text p {
			margin-top: 6px;
		}
		.news_box .left .more_btn {
			width: 25%;
		}
	}
	
	@media (max-width: 640px) {
		.case_nav {
			width: 100%;
		}
		.case_nav a {
			width: 20%;
			text-align: center;
			padding: 0;
			text-overflow: ellipsis;
			overflow: hidden;
			white-space: nowrap;
		}
	}
	
	.jiejuefangan_list {
		padding-bottom: 50px;
	}
	
	.jiejuefangan_list ul {
		margin-top: 2%;
	}
	
	.jiejuefangan_list ul li {
		float: left;
		width: 32%;
		margin-bottom: 2%;
		margin-right: 2%;
		transition: all .5s;
	}
	
	.jiejuefangan_list ul li:nth-child(3n) {
		margin-right: 0;
	}
	
	.jiejuefangan_list ul li .img {
		line-height: 0;
		overflow: hidden;
	}
	
	.jiejuefangan_list ul li .img img {
		width: 100%;
	}
	
	.jiejuefangan_list ul li .t {
		border-top: none;
		border: 1px solid #ececec;
		width: 100%;
		line-height: 52px;
		color: #666666;
		font-size: 16px;
		text-overflow: ellipsis;
		overflow: hidden;
		white-space: nowrap;
		text-align: center;
		padding: 0 30px;
	}
	
	.jiejuefangan_list ul li:hover {
		background: #124189;
	}
	
	.jiejuefangan_list ul li:hover .t {
		color: #fff;
	}
	
	.jiejuefangan_list .more_btn {
		display: block;
		width: 100%;
		background: #f2f2f2;
		text-align: center;
		line-height: 46px;
		color: #666666;
		font-size: 15px;
		font-family: arial;
		text-transform: uppercase;
	}
	
	.jiejuefangan_list .more_btn span {
		display: inline-block;
		background: url(../img/more_icon1.png) no-repeat right center;
		padding-right: 40px;
	}
	
	@media (max-width: 1024px) {
		.jiejuefangan_list {
			padding-bottom: 5%;
		}
	}
	
	@media (max-width: 480px) {
		.jiejuefangan_list ul li {
			width: 100%;
			margin-right: 0;
			margin-bottom: 3%;
		}
		.jiejuefangan_list ul li .t {
			font-size: 14px;
			line-height: 36px;
		}
	}
	
	.solutions_banner {
		background: url(../img/solutions_bg.jpg) no-repeat center center / cover;
		min-height: 646px;
		text-align: center;
		padding-top: 125px;
	}
	
	.solutions_banner .bread {
		text-align: left;
	}
	
	.solutions_banner h1 {
		margin-top: 110px;
		color: #ffffff;
		font-size: 40px;
		font-weight: normal;
	}
	
	.solutions_banner .name {
		width: 1000px;
		margin: 2.5% auto 0;
		color: #fff;
		font-size: 16px;
		line-height: 28px;
	}
	
	.solutions_banner .zx {
		margin-top: 2.5%;
		display: inline-block;
		border: 1px solid #fff;
		line-height: 50px;
		border-radius: 50px;
		min-width: 165px;
		text-align: center;
		color: #fff;
		font-size: 16px;
	}
	/*@media (max-width: 1440px) {
  .solutions_banner {
    padding-top: 15%;
  }
}*/
	
	@media (max-width: 1024px) {
		.solutions_banner {
			min-height: auto;
			padding: 3% 0 10%;
		}
		.solutions_banner h1 {
			margin-top: 5%;
		}
		.solutions_banner .name {
			width: 100%;
		}
	}
	
	@media (max-width: 640px) {
		.solutions_banner h1 {
			font-size: 24px;
		}
		.solutions_banner .name {
			font-size: 14px;
			line-height: 24px;
		}
		.solutions_banner .zx {
			margin-top: 3%;
			line-height: 34px;
			font-size: 12px;
		}
	}
	
	.solut_tit {
		text-align: center;
	}
	
	.solut_tit h3 {
		font-weight: normal;
		color: #1f1f1f;
		font-size: 35px;
	}
	
	.solut_tit h3 span {
		color: #03377e;
		font-size: 40px;
	}
	
	.solut_tit p {
		margin-top: 5px;
		color: #cac9c9;
		font-size: 17px;
		font-family: arial;
		text-transform: uppercase;
	}
	
	@media (max-width: 640px) {
		.solut_tit h3 {
			font-size: 22px;
		}
		.solut_tit h3 span {
			font-size: 22px;
		}
		.solut_tit p {
			font-size: 14px;
		}
	}
	
	@media (max-width: 414px) {
		.solut_tit h3 {
			font-size: 17px;
		}
		.solut_tit h3 span {
			font-size: 17px;
		}
		.solut_tit p {
			font-size: 12px;
		}
	}
	
	.jiaotong {
		padding: 65px 0;
	}
	
	.jiaotong .con {
		margin-top: 30px;
	}
	
	.chengshi {
		background: #f1f1f1;
		padding: 60px 0;
	}
	
	.chengshi .con {
		margin-top: 30px;
	}
	
	.shequ {
		padding: 60px 0;
	}
	
	.shequ .con {
		margin-top: 30px;
	}
	
	.shequ .con p {
		margin-top: 3%;
	}
	
	.solut_bottom {
		background: url(../img/solutions_bg2.jpg) no-repeat center center / cover;
		padding: 70px 0;
	}
	
	.solut_bottom .solut_tit h3 {
		color: #fff;
	}
	
	.solut_bottom ol {
		margin-top: 40px;
	}
	
	.solut_bottom ol li {
		float: left;
		width: 32%;
		margin-right: 2%;
	}
	
	.solut_bottom ol li:last-child {
		margin-right: 0;
	}
	
	.solut_bottom ol li .img {
		line-height: 0;
		overflow: hidden;
	}
	
	.solut_bottom ol li .img img {
		width: 100%;
	}
	
	.solut_bottom ol li .t {
		margin-top: 20px;
		text-align: center;
		color: #ffffff;
		font-size: 20px;
		text-overflow: ellipsis;
		overflow: hidden;
		white-space: nowrap;
	}
	
	@media (max-width: 991px) {
		.solut_bottom ol {
			margin-top: 4%;
		}
	}
	
	@media (max-width: 640px) {
		.solut_bottom ol {
			margin-top: 0;
		}
		.solut_bottom ol li {
			width: 49%;
			margin-top: 4%;
			margin-right: 0;
		}
		.solut_bottom ol li:nth-child(2n) {
			float: right;
		}
		.solut_bottom ol li .t {
			margin-top: 10px;
			font-size: 14px;
		}
	}
	
	@media (max-width: 991px) {
		.jiaotong,
		.chengshi,
		.shequ,
		.solut_bottom {
			padding: 6% 0;
		}
		.jiaotong .con,
		.chengshi .con,
		.shequ .con,
		.solut_bottom .con {
			margin-top: 3%;
		}
	}
	
	.youshi_box {
		padding: 70px 0;
	}
	
	.youshi_box h3 {
		color: #1f1f1f;
		font-size: 40px;
		font-weight: normal;
		text-align: center;
	}
	
	.youshi_box .yw {
		text-align: center;
		color: #dddddd;
		font-size: 17px;
		margin-top: 10px;
	}
	
	.youshi_box .name {
		width: 880px;
		margin: 25px auto 0;
		text-align: center;
		color: #666666;
		font-size: 16px;
		line-height: 26px;
	}
	
	.youshi_box ol {
		margin-top: 40px;
		text-align: center;
	}
	
	.youshi_box ol li {
		display: inline-block;
		width: 14.2%;
		text-align: center;
		background: url(../img/g_pic1.jpg) no-repeat right center;
	}
	
	.youshi_box ol li .img {
		line-height: 0;
		width: 47%;
		margin: 0 auto;
	}
	
	.youshi_box ol li .t {
		margin-top: 25px;
		color: #555555;
		font-size: 18px;
	}
	
	.youshi_box ol li:last-child {
		background: none;
	}
	
	@media (max-width: 991px) {
		.youshi_box {
			padding: 7% 0;
		}
		.youshi_box .name {
			margin-top: 2.5%;
		}
		.youshi_box ol {
			margin-top: 4%;
		}
	}
	
	@media (max-width: 768px) {
		.youshi_box .name {
			width: 100%;
		}
		.youshi_box ol li .t {
			margin-top: 2%;
			font-size: 14px;
		}
	}
	
	@media (max-width: 640px) {
		.youshi_box h3 {
			font-size: 24px;
		}
		.youshi_box .yw {
			font-size: 12px;
			margin-top: 5px;
			text-transform: uppercase;
		}
		.youshi_box .name {
			font-size: 14px;
			line-height: 24px;
		}
	}
	
	@media (max-width: 480px) {
		.youshi_box ol li .t {
			font-size: 12px;
		}
	}
	
	@media (max-width: 414px) {
		.youshi_box h3 {
			font-size: 17px;
		}
		.youshi_box ol li {
			margin-bottom: 4%;
			width: 33.33333333%;
			float: left;
		}
		.youshi_box ol li:nth-child(3n) {
			background: none;
		}
	}
	
	.tables_con {
		background: #f4f4f4;
		padding: 60px 0;
	}
	
	.tables_con .box {
		padding: 0 4%;
	}
	
	.tables_con .box .left {
		width: 45%;
		float: left;
	}
	
	.tables_con .box .left h3 {
		color: #1f1f1f;
		font-size: 30px;
		font-weight: normal;
	}
	
	.tables_con .box .left span {
		display: block;
		color: #aaaaaa;
		font-size: 14px;
		margin: 12px 0 15px;
		text-transform: uppercase;
		font-family: arial;
	}
	
	.tables_con .box .left .text {
		color: #666666;
		font-size: 16px;
		line-height: 32px;
	}
	
	.tables_con .box .left .bt {
		margin-top: 20px;
		color: #666666;
		font-size: 16px;
	}
	
	.tables_con .box .left ol {
		margin-top: 15px;
	}
	
	.tables_con .box .left ol li {
		float: left;
		width: 25.5%;
		margin-right: 3%;
	}
	
	.tables_con .box .left ol li:last-child {
		margin-right: 0;
	}
	
	.tables_con .box .left ol li .img {
		border: 1px solid #eeeeee;
		line-height: 0;
		overflow: hidden;
	}
	
	.tables_con .box .left ol li .img img {
		width: 100%;
	}
	
	.tables_con .box .left ol li .t {
		margin-top: 10px;
		color: #999999;
		font-size: 14px;
		text-overflow: ellipsis;
		overflow: hidden;
		white-space: nowrap;
	}
	
	.tables_con .box .right {
		float: right;
		width: 48%;
		margin-top: 1.5%;
	}
	
	.tables_con .box .right span {
		line-height: 0;
		display: block;
	}
	
	.tables_con .box .right p {
		color: #666666;
		font-size: 14px;
		margin-top: 10px;
	}
	
	@media (max-width: 991px) {
		.tables_con {
			padding: 6% 0;
		}
		.tables_con .box {
			padding: 0;
		}
		.tables_con .box .left {
			width: 55%;
		}
		.tables_con .box .left span {
			margin: 1.5% 0;
		}
		.tables_con .box .left .text {
			font-size: 14px;
			line-height: 24px;
		}
		.tables_con .box .left .bt {
			margin-top: 2%;
		}
	}
	
	@media (max-width: 768px) {
		.tables_con .box .left {
			width: 100%;
		}
		.tables_con .box .left h3 {
			font-size: 24px;
		}
		.tables_con .box .right {
			margin-top: 4%;
			width: 100%;
		}
	}
	
	@media (max-width: 480px) {
		.tables_con .box .left span {
			font-size: 10px;
		}
	}
	
	@media (max-width: 414px) {
		.tables_con .box .left h3 {
			font-size: 17px;
		}
		.tables_con .box .left .bt {
			font-size: 14px;
		}
		.tables_con .box .left ol {
			margin-top: 8px;
		}
		.tables_con .box .left ol li .t {
			font-size: 12px;
			margin-top: 3px;
		}
	}
	
	.tables_con2 {
		background: #fff;
	}
	
	.tables_con2 .box .left {
		float: right;
	}
	
	.tables_con2 .box .right {
		float: left;
	}
	
	.gaosu_box {
		padding: 150px 0 178px;
	}
	
	.gaosu_box .box {
		padding: 0 4%;
	}
	
	.gaosu_box .box .left {
		width: 43%;
		float: left;
	}
	
	.gaosu_box .box .left h3 {
		color: #1f1f1f;
		font-size: 40px;
		font-weight: normal;
	}
	
	.gaosu_box .box .left span {
		display: block;
		margin-top: 8px;
		color: #a9a9a9;
		font-size: 14px;
		font-family: arial;
		text-transform: uppercase;
	}
	
	.gaosu_box .box .left .t {
		margin-top: 18px;
		color: #202020;
		font-size: 16px;
		line-height: 28px;
	}
	
	.gaosu_box .box .right {
		width: 38%;
		float: right;
		line-height: 0;
	}
	
	@media (max-width: 991px) {
		.gaosu_box {
			padding: 10% 0 12%;
		}
		.gaosu_box .box {
			padding: 0;
		}
	}
	
	.gaosu_box2 {
		background: url(../img/gaoshu_bg.jpg) no-repeat center center / cover;
		padding: 100px 0 68px;
	}
	
	.gaosu_box2 .box {
		padding: 0 4%;
	}
	
	.gaosu_box2 .box .left {
		margin-right: 5%;
		margin-top: 6%;
		float: right;
		width: 43%;
	}
	
	.gaosu_box2 .box .left h3 {
		color: #fff;
		font-size: 40px;
		font-weight: normal;
	}
	
	.gaosu_box2 .box .left span {
		display: block;
		margin-top: 8px;
		color: #fff;
		font-size: 14px;
		font-family: arial;
		text-transform: uppercase;
	}
	
	.gaosu_box2 .box .left .t {
		margin-top: 18px;
		color: #fff;
		font-size: 16px;
		line-height: 28px;
	}
	
	.gaosu_box2 .box .right {
		float: left;
		width: 34%;
		line-height: 0;
	}
	
	@media (max-width: 991px) {
		.gaosu_box2 {
			padding: 10% 0 6.8%;
		}
		.gaosu_box2 .box {
			padding: 0;
		}
	}
	
	.gaosu_box3 .box .left {
		width: 46%;
	}
	
	@media (max-width: 991px) {
		.gaosu_box3 {
			padding: 10% 0;
		}
		.gaosu_box3 .box {
			padding: 0;
		}
		.gaosu_box3 .box .left {
			width: 59%;
		}
	}
	
	.gaosu_box4 {
		background: url(../img/gaoshu_bg2.jpg) no-repeat center center / cover;
		padding: 45px 0 40px;
		text-align: center;
	}
	
	.gaosu_box4 h3 {
		color: #fff;
		font-size: 40px;
		font-weight: normal;
	}
	
	.gaosu_box4 span {
		display: block;
		margin-top: 8px;
		color: #fff;
		font-size: 14px;
		font-family: arial;
		text-transform: uppercase;
	}
	
	.gaosu_box4 .img {
		width: 63%;
		margin: 35px auto 0;
	}
	
	@media (max-width: 991px) {
		.gaosu_box4 {
			padding: 5% 0;
		}
	}
	
	.gaosu_box5 {
		padding: 65px 0;
	}
	
	.gaosu_box5 h3 {
		color: #1f1f1f;
		font-size: 40px;
		font-weight: normal;
		text-align: center;
	}
	
	.gaosu_box5 span {
		text-align: center;
		display: block;
		margin-top: 8px;
		color: #a9a9a9;
		font-size: 14px;
		font-family: arial;
		text-transform: uppercase;
	}
	
	.gaosu_box5 ol {
		margin-top: 35px;
	}
	
	.gaosu_box5 ol li {
		width: 50%;
		text-align: center;
		float: left;
		background: url(../img/gaoshu_icon1.jpg) repeat-y right top;
	}
	
	.gaosu_box5 ol li:last-child {
		background: none;
	}
	
	.gaosu_box5 ol li .img {
		line-height: 0;
	}
	
	.gaosu_box5 ol li .text {
		margin-top: 40px;
		color: #333333;
		font-size: 18px;
		line-height: 28px;
	}
	
	@media (max-width: 991px) {
		.gaosu_box5 {
			padding: 6% 0;
		}
	}
	
	@media (max-width: 768px) {
		.gaosu_box .box .left h3,
		.gaosu_box2 .box .left h3,
		.gaosu_box4 h3,
		.gaosu_box5 h3 {
			font-size: 24px;
		}
		.gaosu_box,
		.gaosu_box2,
		.gaosu_box4 {
			padding: 6% 0 7%;
		}
		.gaosu_box .box .left {
			width: 100%;
		}
		.gaosu_box .box .left .t,
		.gaosu_box2 .box .left .t {
			font-size: 14px;
			line-height: 24px;
			margin-top: 1.2%;
		}
		.gaosu_box .box .right,
		.gaosu_box2 .box .right {
			margin-top: 3%;
			width: 100%;
		}
		.gaosu_box2 .box .left {
			width: 100%;
			margin: 0;
		}
		.gaosu_box4 .img {
			width: 100%;
			margin-top: 3%;
		}
		.gaosu_box5 ol {
			margin-top: 3%;
		}
		.gaosu_box5 ol li .text {
			font-size: 14px;
			line-height: 24px;
			margin-top: 3%;
		}
	}
	
	@media (max-width: 480px) {
		.gaosu_box .box .left span,
		.gaosu_box2 .box .left span,
		.gaosu_box4 span,
		.gaosu_box5 span {
			font-size: 10px;
		}
	}
	
	@media (max-width: 414px) {
		.gaosu_box .box .left h3,
		.gaosu_box2 .box .left h3,
		.gaosu_box4 h3,
		.gaosu_box5 h3 {
			font-size: 17px;
		}
		.gaosu_box5 ol li .img {
			width: 98%;
			margin: 0 auto;
		}
		.gaosu_box5 ol li .text {
			font-size: 12px;
			line-height: 20px;
		}
	}
	/**2017-11-24**/
	
	.bread {
		color: #31568b;
	}
	
	.bread a {
		display: inline-block;
		color: #31568b;
	}
	
	.bread a:hover {
		text-decoration: underline;
	}
	
	.proshow_banner {
		/*background: url(../img/proshow_banner.jpg) no-repeat center center / cover;*/
		background-color: #F1F1F1;
	}
	
	.proshow_banner .container {
		padding-top: 0px;
		background-color: #ffffff;
	}
	
	.proshow_banner .con_box {
		margin-top: 50px;
	}
	
	.proshow_banner .con_box .img {
		float: left;
		width: 45%;
	}
	
	.proshow_banner .con_box .text {
		float: right;
		width: 50%;
	}
	
	.proshow_banner .con_box .text h1 {
		color: #0b2a59;
		font-size: 36px;
	}
	
	.proshow_banner .con_box .text .t {
		color: #ffffff;
		font-size: 16px;
		line-height: 26px;
		margin-top: 10px;
	}
	
	.proshow_banner .con_box .text .d {
		margin-top: 8%;
	}
	
	.proshow_banner .con_box .text .d p {
		position: relative;
		color: #ffffff;
		font-size: 16px;
		padding-left: 3%;
		margin: 20px 0;
	}
	
	.proshow_banner .con_box .text .d p:before {
		content: "";
		position: absolute;
		left: 0;
		top: 50%;
		margin-top: -3px;
		width: 6px;
		height: 6px;
		border: 1px solid #fff;
		border-radius: 50px;
	}
	
	@media (max-width: 1024px) {
		.proshow_banner {
			min-height: auto;
		}
		.proshow_banner .container {
			padding-top: 3%;
			padding-bottom: 6%;
		}
		.proshow_banner .container .con_box {
			margin-top: 5%;
		}
		.proshow_banner .container .con_box .text .d {
			margin-top: 5%;
		}
		.proshow_banner .container .con_box .text .d p {
			margin: 2% 0;
		}
	}
	
	@media (min-width:768px) and (max-width:1024px) {
		.proshow_banner .con_box .shuxing {
			display: none;
		}
	}
	
	@media (max-width: 768px) {
		.proshow_banner .con_box .img {
			width: 100%;
			text-align: center;
		}
		.proshow_banner .con_box .text {
			width: 100%;
		}
		.proshow_banner .container .con_box .text h1 {
			font-size: 24px;
		}
		.proshow_banner .container .con_box .text .t {
			font-size: 14px;
			line-height: 24px;
		}
		.proshow_banner .container .con_box .text .d p {
			font-size: 14px;
			padding-left: 6%;
		}
	}
	
	@media (max-width: 640px) {
		.proshow_banner .container .con_box .text h1 {
			font-size: 24px;
		}
		.proshow_banner .container .con_box .text .t {
			font-size: 14px;
			line-height: 24px;
		}
		.proshow_banner .container .con_box .text .d p {
			font-size: 14px;
			padding-left: 6%;
			width: 100%;
			float: left;
		}
	}
	
	@media (max-width: 480px) {
		.proshow_banner .container .con_box .img {
			/*margin-top: 3%;*/
			width: 100%;
		}
		.proshow_banner .container .con_box .text {
			width: 100%;
		}
		.proshow_banner .container .con_box .text h1 {
			font-size: 18px;
		}
		.proshow_banner .container .con_box .text .t {
			font-size: 14px;
			line-height: 24px;
		}
		.proshow_banner .container .con_box .text .d {
			margin-top: 3%;
		}
		.proshow_banner .container .con_box .text .d p {
			font-size: 14px;
			padding-left: 6%;
			float: left;
			margin: 1% 0;
		}
		.proshow_banner2 .container .con_box .text .bt ul li {
			width: 100%;
			padding: 6% auto;
		}
	}
	
	@media (max-width: 480px) {
		.proshow_banner .container .con_box .text .d p:before {
			margin-top: -4px;
		}
	}
	
	.cptd_box {
		padding: 30px 0;
	}
	
	.cptd_box .cptd_div {
		margin-top: 2%;
	}
	
	.cptd_box .cptd_div p,
	.cptd_box .cptd_div span,
	.cptd_box .cptd_div div {
		line-height: 30px;
	}
	
	.cptd_box .cptd_div li {
		float: left;
		width: 46%;
		padding: 2.5% 0;
		border-top: 1px solid #e9e9e9;
	}
	
	.cptd_box .cptd_div li:nth-child(2n) {
		float: right;
	}
	
	.cptd_box .cptd_div li:first-child,
	.cptd_box .cptd_div li:nth-child(2) {
		border: none;
	}
	
	.cptd_box .cptd_div li .img {
		width: 10%;
		float: left;
		line-height: 0;
	}
	
	.cptd_box .cptd_div li .text {
		float: left;
		width: 90%;
		padding-left: 5%;
		color: #888888;
		font-size: 16px;
		/*padding-top: 3.2%;*/
		position: absolute;
		right: 0;
		top: 50%;
		transform: translateY(-50%);
		-webkit-transform: translateY(-50%);
		-moz-transform: translateY(-50%);
		-o-transform: translateY(-50%);
		-ms-transform: translateY(-50%);
	}
	
	.cptd_box .cptd_div li {
		position: relative;
	}
	
	.cptd_box .cptd_div2 li .text {
		position: absolute;
		right: 0;
		top: 50%;
		transform: translateY(-50%);
		-webkit-transform: translateY(-50%);
		-moz-transform: translateY(-50%);
		-o-transform: translateY(-50%);
		-ms-transform: translateY(-50%);
	}
	
	@media (max-width: 1024px) {
		.cptd_box {
			padding: 2% 0;
		}
	}
	
	@media (max-width: 991px) {
		.cptd_box .cptd_div li .text {
			text-overflow: ellipsis;
			overflow: hidden;
			white-space: nowrap;
		}
	}
	
	@media (max-width: 768px) {
		.cptd_box .cptd_div li {
			width: 100%;
		}
		.cptd_box .cptd_div li:nth-child(2) {
			border-top: 1px solid #f4f4f4;
		}
	}
	
	@media (max-width: 480px) {
		/*.cptd_box .cptd_div li .text {
    padding-top: 2.5%;
  }*/
	}
	
	@media (max-width: 414px) {
		.cptd_box .cptd_div li .text {
			/*padding-top: 2.7%;*/
			font-size: 14px;
		}
	}
	
	@media (max-width: 360px) {
		/*.cptd_box .cptd_div li .text {
    padding-top: 2.3%;
  }*/
	}
	
	@media (max-width: 320px) {
		/*.cptd_box .cptd_div li .text {
    padding-top: 2%;
  }*/
	}
	
	.cpsp_box .cpsp_con,
	.cpyt_box .cpyt_con,
	.cjsl_box .cjsl_js,
	.hzal_box,
	.hzal_con,
	.zzry_con {
		margin-top: 2%;
	}
	
	.cpsp_con ul li {
		width: 31.9%;
		margin-right: 2%;
		float: left;
	}
	
	.cpsp_con ul li:last-child {
		margin-right: 0;
	}
	
	.cpyt_box .cpyt_con ul li {
		width: 23%;
		margin-right: 2%;
		float: left;		
		text-align: center;
	}
	
	.cjsl_box .cjsl_js p {
		line-height: 28px;
	}
	
	.cjsl_box .cjsl_con ul li {
		float: left;
		width: 32%;
		margin-right: 2%;
	}
	
	.cjsl_box .cjsl_con ul li:last-child {
		margin-right: 0;
	}
	
	.zzry_box .zzry_con ul li {
		float: left;
		width: 23%;
		margin-right: 2%;
		text-align: center;
	}
	
	.hzal_box .hzal_con ul li {
		float: left;
		width: 47%;
		margin-top: 1%;
	}
	
	.hzal_con ul li .rq {
		width: 13%;
		height: 100%;
		background-color: #004a9f;
		color: #FFFFFF;
		text-align: center;
		float: left;
	}
	
	.hzal_con ul li .rq span {
		font-size: 38px;
		font-weight: bold;
	}
	
	.hzal_con ul li .rq p {
		font-size: 24px;
		border-top: 1px solid #FFFFFF;
		width: 55px;
		height: 30px;
		margin: 0 auto;
	}
	
	.hzal_con ul li .bt {
		margin-left: 15%;
		padding-right: 3%;
	}
	
	.hzal_con ul li .bt a {
		font-size: 18px;
		color: #004a9f;
		line-height: 30px;
		font-weight: bold;
	}
	
	.hzal_con ul li .bt p {
		color: #999999;
		font-size: 12px;
		line-height: 20px;
		margin-top: 10px;
	}
	
	@media only screen and (max-width: 640px) {
		.hzal_con ul li .bt a {
			font-size: 14px;
			font-weight: normal;
			color: #666;
		}
		.hzal_con ul li .bt a:hover {
			color: #004A9F;
		}
		.cjsl_box {
			display: none;
		}
	}
	
	.xjdg_box p {
		font-size: 16px;
		line-height: 50px;
	}
	
	.xjdg_con {
		width: 99%;
		border: 1px solid #D5D5D5;
		margin: 0 auto;
		overflow: hidden;
	}
	
	.xjdg_con {
		height: auto;
		overflow: hidden !important;
		clear: both;
		margin-top: 1%;
		padding: 1% 5% 2%;
		z-index: 2;
		margin-bottom: 3%;
	}
	
	.xjdg_con .form .form-fl {
		width: 45%;
		float: left;
	}
	
	.xjdg_con .form .form-fr {
		width: 45%;
		float: right;
	}
	
	.xjdg_con .form .input-row {
		font-size: 14px;
		color: #333333;
		margin-bottom: 12px;
	}
	
	.xjdg_con .form .input-row em {
		color: red;
		margin-right: 4px;
	}
	
	.xjdg_con .form label {
		display: none;
		line-height: 30px;
		color: #e72c00;
		background: url("../images/error-icon.png") left center no-repeat;
		padding-left: 20px;
		font-size: 12px;
	}
	
	.xjdg_con .form .input-row input {
		margin-top: 6px;
		border: 1px solid #cccccc;
		width: 100%;
		font-size: 13px;
		padding: 14px;
	}
	
	.xjdg_con .form .input-row textarea {
		resize: none;
		margin-top: 24px;
		border: 1px solid #cccccc;
		width: 100%;
		padding: 18px;
		font-size: 13px;
	}
	
	.xjdg_con .form .submit {
		cursor: pointer;
		margin-top: 23px;
		width: 100%;
		border: 0;
		background-color: #1466c5;
		font-size: 16px;
		color: #fff;
		height: 45px;
		line-height: 45px;
	}
	
	.xjdg_con .form .submit:hover {
		background-color: #0a50a0;
	}
	
	@media only screen and (min-width: 768px) and (max-width: 1024px) {
		.hzal_box .hzal_con ul li {
			width: 100%;
		}
		.hzal_con ul li .bt {
			margin-left: 0;
		}
		.hzal_con ul li .rq {
			display: none;
		}
	}
	
	@media only screen and (min-width: 1024px) and (max-width: 1310px) {
		.hzal_con ul li .rq {
			display: none;
		}
		.hzal_con ul li .bt {
			margin-left: 0;
		}
	}
	
	@media (max-width: 768px) {
		.xjdg_con .form .form-fl {
			width: 100%;
			float: left;
		}
		.xjdg_con .form .form-fr {
			width: 100%;
			float: right;
		}
		.xjdg_con {
			height: auto;
			overflow: hidden !important;
			clear: both;
			margin-top: 15px;
			padding: 1% 5% 2%;
			z-index: 2;
		}
		.hzal_box .hzal_con ul li {
			width: 100%;
		}
		.hzal_box .hzal_con ul li a {
			font-weight: normal;
			font-size: 14px;
			color: #666;
		}
		.hzal_con ul li .bt {
			margin-left: 0;
		}
		.hzal_box .hzal_con li .rq {
			display: none;
		}
		.hzal_box .hzal_con li p {
			display: none;
		}
	}
	
	.yyfw_box {
		background: #f2f2f3;
		padding: 60px 0 70px;
	}
	
	.yyfw_box ul {
		margin-top: 50px;
		text-align: center;
	}
	
	.yyfw_box ul li {
		position: relative;
		background: #093c8a;
		/*float: left;*/
		display: inline-block;
		/*margin-right: 2.6%;*/
		margin: 0 1%;
		width: 14.5%;
	}
	
	.yyfw_box ul li:last-child {
		margin-right: 0;
	}
	
	.yyfw_box ul li .img {
		line-height: 0;
	}
	
	.yyfw_box ul li .text {
		position: absolute;
		left: 0;
		bottom: 25px;
		width: 100%;
		text-align: center;
		color: #fff;
		font-size: 16px;
	}
	
	@media (max-width: 1024px) {
		.yyfw_box {
			padding: 6% 0 7%;
		}
		.yyfw_box ul {
			margin-top: 5%;
		}
	}
	
	@media (max-width: 768px) {
		.yyfw_box ul li {
			width: 32.5%;
			margin-bottom: 1.25%;
			margin-right: 1.25%;
			float: left;
			margin-left: 0;
		}
		.yyfw_box ul li:nth-child(3n) {
			margin-right: 0;
		}
		.yyfw_box ul li .img img {
			width: 100%;
		}
	}
	
	@media (max-width: 414px) {
		.yyfw_box ul li {
			width: 49%;
			margin-bottom: 2%;
			margin-right: 0;
		}
		.yyfw_box ul li:nth-child(2n) {
			float: right;
		}
		.yyfw_box ul li:nth-child(3n) {
			margin-right: 0;
		}
		.yyfw_box ul li .img img {
			width: 100%;
		}
		.yyfw_box ul li .text {
			bottom: 15px;
			font-size: 15px;
		}
	}
	
	.cpcp_box {
		padding: 30px 0;
	}
	
	.jscs_box,
	.cpyt_box,
	.cjsl_box,
	.zzry_box,
	.hzal_box {
		padding: 30px 0;
	}
	
	.jscs_box {
		width: 100%;
		overflow: hidden;
		/*margin: 30px auto;*/
	}
	/*.ncs table{width: 1200px;   border-collapse: collapse; margin-top: 0px;}
.ncs table th{height: 42px; padding: 0 5px; background: #F4F4F4; border: 1px solid #DCDDDD;}
.ncs table td{height: 42px; padding: 0 5px; text-align: center; color: #383838; line-height: 16px; border: 1px solid #EBEBEB; margin: 0; padding: 0;}*/
	
	.jscs_box table {
		border: 0;
		border-collapse: collapse;
		width: 100%;
	}
	
	.jscs_box table tr th {
		padding: 13px 0 13px 22px;
		background-color: #e1e8f1;
		border: 1px solid #cad3de;
		text-align: left;
	}
	
	.jscs_box table tr td:first-child {
		background-color: #e1e8f1;
		border: 1px solid #cad3de;
		text-align: left;
	}
	
	.jscs_box table tr th p {
		color: #333;
		font-size: 13px;
	}
	
	.jscs_box table tr td:first-child p {
		color: #333;
		font-size: 13px;
	}
	
	.jscs_box table tr td {
		padding: 15px 0 15px 22px;
		border: 1px solid #cad3de;
	}
	
	.jscs_box table tr td p {
		color: #666;
		line-height: 24px;
		font-size: 13px;
	}
	
	.jscs_box table tr td a {
		color: #eb6b04;
	}
	
	.jscs_box table tr td a:hover {
		color: #eb6b04;
	}
	/*.jscs_box .tables {
  margin-top: 40px;
}
.jscs_box .tables table tr {
  background: #f7f7f7;
}
.jscs_box .tables table tr th {
  background: #093c8a;
  color: #fff;
  font-size: 18px;
  font-weight: normal;
  padding: 1.5% 0;
}
.jscs_box .tables table tr td {
  text-align: center;
  padding: 1.5% 0;
}
.jscs_box .tables table tr:nth-child(2n) {
  background: #fff;
}
.jscs_box .jscs_img {
  margin-top: 50px;
}
@media (max-width: 1024px) {
  .jscs_box {
    padding: 6% 0;
  }
  .jscs_box .tables {
    margin-top: 4%;
  }
}
@media (max-width: 640px) {
  .jscs_box .tables table tr th {
    font-size: 14px;
  }
  .jscs_box .tables table tr td {
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  .jscs_box .tables table tr th {
    font-size: 12px;
  }
  .jscs_box .tables table tr td {
    font-size: 12px;
  }
}
@media (max-width: 375px) {
  .jscs_box .tables table tr th {
    font-size: 10px;
  }
  .jscs_box .tables table tr td {
    font-size: 10px;
  }
}*/
	
	.xgal_box {
		background: #f3f2f2;
		padding: 60px 0;
	}
	
	.xgal_box ol {
		margin-top: 40px;
	}
	
	.xgal_box ol li {
		background: #fff;
		float: left;
		width: 32%;
		margin-right: 2%;
	}
	
	.xgal_box ol li:last-child {
		margin-right: 0;
	}
	
	.xgal_box ol li .img {
		line-height: 0;
	}
	
	.xgal_box ol li .img img {
		width: 100%;
	}
	
	.xgal_box ol li .t {
		margin: 15px 10px;
		text-align: center;
		color: #666666;
		font-size: 20px;
		text-overflow: ellipsis;
		overflow: hidden;
		white-space: nowrap;
	}
	
	@media (max-width: 1024px) {
		.xgal_box {
			padding: 6% 0;
		}
		.xgal_box ol {
			margin-top: 4%;
		}
	}
	
	@media (max-width: 640px) {
		.xgal_box ol {
			margin-top: 0;
		}
		.xgal_box ol li {
			width: 49%;
			margin-top: 4%;
			margin-right: 0;
		}
		.xgal_box ol li:nth-child(2n) {
			float: right;
		}
		.xgal_box ol li .t {
			margin-top: 10px;
			font-size: 14px;
			margin-bottom: 10px;
		}
	}
	
	@media (max-width: 480px) {
		.xgal_box ol li {
			width: 100%;
		}
	}
	
	.cct_box {
		padding: 60px 0 70px;
	}
	
	.cct_box .cct_img {
		margin-top: 50px;
	}
	
	.ddxx_box {
		padding: 60px 0;
		background: #f4f4f4;
	}
	
	.ddxx_box .ddxx_img {
		margin-top: 50px;
	}
	
	.gxxn_box {
		padding: 60px 0;
	}
	
	.gxxn_box .gxxn_img {
		margin-top: 50px;
	}
	
	.proshow_banner2 .con_box .img {
		/*margin-top: 3%;*/
	}
	
	.proshow_banner2 .con_box .text .bt {
		margin-top: 15px;
		font-size: 14px;
		position: relative;
		background-color: #F1F1F1;
	}
	
	.proshow_banner2 .con_box .text .bt ul {
		background-color: #F1F1F1;
	}
	
	.proshow_banner2 .con_box .text .bt ul li {
		float: left;
		width: 30%;
		padding-left: 50px;
	}
	
	.proshow_banner2 .con_box .text .shuxing {
		margin-top: 100px;
	}
	
	.proshow_banner2 .con_box .text .bt #sx_f {
		background: url(../img/a1.png) left no-repeat;
	}
	
	.proshow_banner2 .con_box .text .bt #sx_s {
		background: url(../img/a2.png) left no-repeat;
	}
	
	.proshow_banner2 .con_box .text .bt #sx_t {
		background: url(../img/a3.png) left no-repeat;
	}
	
	.proshow_banner2 .con_box .text .bt ul li {
		line-height: 50px;
	}
	
	.proshow_banner2 .con_box .text .shuxing li {
		line-height: 30px;
	}
	
	.proshow_banner2 .con_box .text .ph {
		margin-top: 30px;
	}
	
	.proshow_banner2 .con_box .text .phone {
		width: 40%;
		padding: 1% 10% 1% 8%;
		float: left;
		background-color: #e70012;
		border-radius: 5px;
	}
	
	.proshow_banner2 .con_box .text .phone a {
		float: right;
		color: #FFFFFF;
		font-size: 24px;
		line-height: 33px;
		width: 100%;
	}
	.proshow_banner2 .con_box .text .phone a span{
	    /*padding-left: 20px;*/	    
	    float: right;
    }
	.proshow_banner2 .con_box .text .ph img {
		margin-left: 3%;
	}
	/*.proshow_banner2 .con_box .text .bt:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -3px;
  width: 6px;
  height: 6px;
  border: 1px solid #fff;
  border-radius: 50px;
}*/
	
	.proshow_banner2 .con_box .text p {
		margin-top: 10px;
		color: #fff;
		font-size: 15px;
		line-height: 25px;
	}
	
	.proshow_banner2 .con_box .text .rz {
		margin-top: 15px;
		line-height: 0;
	}
	
	@media only screen and (min-width: 1025px) and (max-width: 1310px) {
		.proshow_banner2 .con_box .text .bt,
		.proshow_banner2 .con_box .text .phone {
			display: none;
		}
		.proshow_banner2 .con_box .text .shuxing {
			margin-top: 10px;
		}
	}
	
	@media only screen and (min-width: 768px) and (max-width: 1024px) {
		.proshow_banner2 .con_box .text .ph {
			display: block;
		}
		.proshow_banner2 .con_box .text .bt {
			display: none;
		}
		.proshow_banner2 .con_box .text .shuxing {
			display: block;
			margin-top: 10px;
		}
		.proshow_banner2 .con_box .text .phone {
			display: none;
		}
	}
	
	@media (max-width: 1024px) {
		.proshow_banner2 {
			padding-bottom: 1%;
		}
		.proshow_banner2 .con_box .text .bt {
			font-size: 15px;
			margin-top: 4%;
		}
		.proshow_banner2 .con_box .text p {
			font-size: 14px;
		}
	}
	
	@media (max-width: 640px) {
		.proshow_banner2 {
			padding-bottom: 1%;
		}
		.proshow_banner2 .con_box .img {
			width: 100%;
			margin-top: 0;
		}
		.proshow_banner2 .con_box .text {
			margin-top: 3%;
			width: 100%;
		}
		.proshow_banner2 .con_box .text .bt {
			margin-top: 2.5%;
		}
	}
	
	@media only screen and (max-width: 625px) {
		.proshow_banner2 .con_box .text .phone {
			display: none;
		}
	}
	
	@media (max-width: 1024px) {
		.cct_box,
		.ddxx_box,
		.gxxn_box,
		.yykg_box,
		.pzfa_box,
		.cpcs_box {
			padding: 6% 0 7%;
		}
		.jscs_box .jscs_img,
		.cct_box .cct_img,
		.ddxx_box .ddxx_img,
		.gxxn_box .gxxn_img {
			margin-top: 5%;
		}
	}
	
	.proshow_dh {
		padding: 30px 0;
		/*margin: 20px auto;*/
	}
	.proshow_dh ul{
		background-color: #FFFFFF;
		height: 50px;
		padding: 15px 0;
	}
	.proshow_dh ul li {
		float: left;
		width: 14.285%;
		text-align: center;
		font-size: 18px;
		border-right: 1px solid #CACACA;
	}
	
	.proshow_dh ul li:last-child {
		border-right: none;
	}
	
	.proshow_banner3 .con_box .img {
		margin-top: 3%;
		line-height: 0;
	}
	
	.proshow_banner3 .con_box .text {
		margin-top: 5.4%;
	}
	
	.proshow_banner3 .con_box .text .bt {
		margin-top: 20px;
		color: #ffffff;
		font-size: 18px;
		padding-left: 18px;
		position: relative;
	}
	
	.proshow_banner3 .con_box .text .bt:before {
		content: "";
		position: absolute;
		left: 0;
		top: 50%;
		margin-top: -3px;
		width: 6px;
		height: 6px;
		border: 1px solid #fff;
		border-radius: 50px;
	}
	
	.proshow_banner3 .con_box .text p {
		margin-top: 10px;
		color: #fff;
		font-size: 15px;
		line-height: 25px;
	}
	
	@media (max-width: 1024px) {
		.proshow_banner3 {
			padding-bottom: 0;
		}
	}
	
	@media (max-width: 768px) {
		.proshow_banner3 .con_box .text {
			width: 55%;
			margin-top: 0;
		}
	}
	
	@media (max-width: 640px) {
		.proshow_banner3 {
			padding-bottom: 9%;
		}
		.proshow_banner3 .con_box .img {
			width: 100%;
			margin-top: 0;
		}
		.proshow_banner3 .con_box .text {
			margin-top: 3%;
			width: 100%;
		}
		.proshow_banner3 .con_box .text .bt {
			margin-top: 2.5%;
		}
		.proshow_dh {
			display: none;
		}
	}
	
	.cpgn_box {
		padding: 60px 0;
	}
	
	.cpgn_box ol {
		margin-top: 50px;
	}
	
	.cpgn_box ol li {
		width: 22%;
		border-radius: 4px;
		float: left;
		margin-bottom: 3%;
		margin-right: 4%;
		padding: 3% 10px 2%;
		height: 172px;
		box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
	}
	
	.cpgn_box ol li:nth-child(4n) {
		margin-right: 0;
	}
	
	.cpgn_box ol li .img {
		width: 25%;
		margin: 0 auto;
		line-height: 0;
	}
	
	.cpgn_box ol li h3 {
		margin-top: 8%;
		color: #333333;
		font-size: 16px;
		font-weight: normal;
		text-align: center;
	}
	
	.cpgn_box ol li p {
		display: none;
	}
	
	.cpgn_box ol li:hover {
		background: #093c8a;
		padding-top: 2%;
	}
	
	.cpgn_box ol li:hover .img {
		display: none;
	}
	
	.cpgn_box ol li:hover h3 {
		color: #fff;
		font-size: 22px;
		margin-top: 0;
	}
	
	.cpgn_box ol li:hover p {
		margin-top: 4%;
		display: block;
		color: #fff;
		font-size: 14px;
		line-height: 24px;
	}
	
	@media (max-width: 1024px) {
		.cpgn_box {
			padding: 6% 0;
		}
		.cpgn_box ol {
			margin-top: 5%;
		}
		.cpgn_box ol li {
			height: auto;
		}
		.cpgn_box ol li:hover {
			padding-top: 3%;
			background: none;
		}
		.cpgn_box ol li:hover .img {
			display: block;
		}
		.cpgn_box ol li:hover h3 {
			margin-top: 8%;
			color: #333333;
			font-size: 16px;
			font-weight: normal;
			text-align: center;
		}
		.cpgn_box ol li:hover p {
			display: none;
		}
	}
	
	@media (max-width: 768px) {
		.cpgn_box ol li h3 {
			font-size: 14px;
		}
		.cpgn_box ol li:hover h3 {
			font-size: 14px;
		}
	}
	
	@media (max-width: 640px) {
		.cpgn_box ol li {
			width: 31.5%;
			margin-right: 2.75%;
		}
		.cpgn_box ol li:nth-child(3n) {
			margin-right: 0;
		}
		.cpgn_box ol li:nth-child(4n) {
			margin-right: 2.75%;
		}
	}
	
	.cpcs_box {
		background: url(../img/cs_bg.jpg) no-repeat center center / cover;
		padding: 60px 0 70px;
	}
	
	.cpcs_box .service_tit {
		color: #fff;
	}
	
	.cpcs_box .cpcs_img {
		margin-top: 50px;
	}
	
	@media (max-width: 1024px) {
		.cpcs_box {
			padding: 6% 0 7%;
		}
		.cpcs_box .cpcs_img {
			margin-top: 5%;
		}
	}
	
	.yykg_box {
		background: #f4f4f4;
		padding: 60px 0;
	}
	
	.yykg_box .yykg_img {
		margin-top: 50px;
	}
	
	@media (max-width: 1024px) {
		.yykg_box {
			padding: 6% 0;
		}
		.yykg_box .yykg_img {
			margin-top: 5%;
		}
	}
	
	.pzfa_box {
		padding: 60px 0;
	}
	
	.pzfa_box .pzfa_img {
		margin-top: 50px;
	}
	
	@media (max-width: 1024px) {
		.pzfa_box {
			padding: 6% 0;
		}
		.pzfa_box .pzfa_img {
			margin-top: 5%;
		}
	}
	/**2017-11-29**/
	
	.search_box {
		padding: 160px 0 60px;
		min-height: 530px;
	}
	
	.search_box h1 {
		color: #063a83;
		font-size: 24px;
		font-weight: normal;
	}
	
	.search_box .search_btn {
		margin-top: 16px;
		width: 635px;
		border: 1px solid #e3e3e3;
		height: 46px;
	}
	
	.search_box .search_btn .text {
		float: left;
		border: none;
		-webkit-appearance: none;
		background: none;
		width: 80%;
		line-height: 44px;
		padding: 0 10px;
		font-size: 14px;
		font-family: "微软雅黑";
	}
	
	.search_box .search_btn .btn {
		float: right;
		background: url(../img/search.png) no-repeat center center;
		width: 56px;
		height: 44px;
		border: none;
		-webkit-appearance: none;
		border-radius: 0;
	}
	
	.search_box .name {
		color: #2e353d;
		font-size: 16px;
		margin: 20px 0;
	}
	
	.search_box .name span {
		color: #063b83;
	}
	
	.search_box .search_con {
		border-top: 1px solid #e1e1e1;
	}
	
	.search_box .search_con ul li {
		float: left;
		width: 100%;
		padding: 45px 0;
		border-bottom: 1px solid #e1e1e1;
	}
	
	.search_box .search_con ul li .img {
		display: block;
		float: left;
		line-height: 0;
		width: 19%;
	}
	
	.search_box .search_con ul li .img img {
		border: 1px solid #e1e1e1;
	}
	
	.search_box .search_con ul li .text {
		float: right;
		width: 76%;
		padding-top: 4%;
	}
	
	.search_box .search_con ul li .text .bt {
		display: block;
		color: #063b83;
		font-size: 16px;
		text-overflow: ellipsis;
		overflow: hidden;
		white-space: nowrap;
	}
	
	.search_box .search_con ul li .text p {
		color: #666666;
		font-size: 16px;
		margin: 15px 0;
	}
	
	.search_box .search_con ul li .text .more {
		color: #666666;
		font-size: 14px;
		display: inline-block;
		text-decoration: underline;
	}
	
	.search_box .search_con .more_btn {
		margin: 35px auto 0;
		width: 11%;
		display: block;
	}
	
	@media (max-width: 1024px) {
		.search_box {
			padding: 4% 0 6%;
		}
		.search_box .search_con ul li {
			padding: 3% 0;
		}
		.search_box .search_con ul li .text {
			padding-top: 3%;
		}
	}
	
	@media (max-width: 768px) {
		.search_box .name {
			font-size: 14px;
			margin: 2% 0;
		}
		.search_box .search_con ul li .text {
			padding-top: 2.5%;
		}
		.search_box .search_con ul li .text .bt {
			font-size: 14px;
		}
		.search_box .search_con ul li .text p {
			margin: 1% 0;
			font-size: 14px;
		}
		.search_box .search_con .more_btn {
			margin-top: 3%;
		}
	}
	
	@media (max-width: 640px) {
		.search_box .search_btn {
			width: 100%;
		}
	}
	
	@media (max-width: 480px) {
		.search_box h1 {
			font-size: 22px;
		}
		.search_box .search_btn {
			height: 36px;
		}
		.search_box .search_btn .text {
			line-height: 34px;
		}
		.search_box .search_btn .btn {
			width: 43px;
			height: 34px;
			background-size: 100% 100%;
		}
		.search_box .search_con ul li .text {
			padding-top: 0;
		}
		.search_box .search_con ul li .img {
			width: 28%;
		}
		.search_box .search_con ul li .text {
			width: 68%;
		}
	}
	
	@media (max-width: 414px) {
		.search_box .search_con ul li .img {
			width: 32%;
		}
		.search_box .search_con ul li .text {
			width: 65%;
		}
		.search_box .search_con ul li .text {
			padding-top: 2.5%;
		}
		.search_box .search_con .more_btn {
			width: 23%;
		}
		.search_box .search_con ul li .text .more {
			text-overflow: ellipsis;
			overflow: hidden;
			white-space: nowrap;
			display: block;
		}
		.search_box .search_con ul li .text p {
			height: 38px;
			overflow: hidden;
		}
	}
	
	@media (max-width: 375px) {
		.search_box .search_con ul li .text {
			padding-top: 3.5%;
		}
		.search_box .search_con ul li .text p {
			text-overflow: ellipsis;
			overflow: hidden;
			white-space: nowrap;
			height: auto;
		}
	}
	
	@media (max-width: 320px) {
		.search_box .search_con ul li .text {
			padding-top: 2.5%;
		}
	}
	
	.inputerror {
		border: 1px solid #f00 !important;
		background-color: #ffe6e6 !important;
	}
	
	@-webkit-keyframes inputerrors {
		0% {
			background-color: #fff;
		}
		100% {
			background-color: #ffe6e6;
		}
	}
	
	.inputerror {
		animation: inputerrors 0.5s 3 ease;
	}
	
	@media only screen and (max-width:1440px) {
		.banner .text .img_bg .t {
			margin-top: 42%;
		}
	}
	/**2017-12-1**/
	
	.case_banner2 .title_box {
		background: url(../img/top_bg4.png) no-repeat center center / cover;
		width: 969px;
		position: relative;
		margin: 58px auto 0;
		text-align: center;
		padding-left: 184.5px;
	}
	
	.case_banner2 .title_box a {
		display: block;
		height: 109px;
		float: left;
		width: 150px;
		border-right: 1px solid #659bdb;
		padding-top: 26px;
	}
	
	.case_banner2 .title_box a span {
		display: block;
		height: 30px;
	}
	
	.case_banner2 .title_box a em {
		font-style: normal;
		color: #ffffff;
		font-size: 14px;
		margin-top: 8px;
		display: block;
	}
	
	.case_banner2 .title_box a:last-child {
		border-color: rgba(0, 0, 0, 0);
	}
	
	.case_banner2 .title_box a:hover,
	.case_banner2 .title_box a.cur {
		background: #124490;
	}
	
	@media (max-width: 1024px) {
		.case_banner2 .title_box {
			margin-top: 7%;
		}
	}
	
	@media (max-width: 991px) {
		.case_banner2 .title_box {
			width: 100%;
		}
	}
	
	@media (max-width: 768px) {
		.case_banner2 .title_box {
			padding-left: 0;
		}
		.case_banner2 .title_box a {
			width: 25%;
		}
	}
	
	@media (max-width: 480px) {
		.case_banner2 .title_box {
			background-size: 100% cover;
			height: auto;
		}
		.case_banner2 .title_box a {
			height: auto;
			padding-top: 3%;
			padding-bottom: 3%;
		}
		.case_banner2 .title_box a span {
			width: 40%;
			height: auto;
		}
		.case_banner2 .title_box a em {
			margin-top: 5px;
		}
	}
	
	@media (max-width: 414px) {
		.case_banner2 .title_box a em {
			font-size: 12px;
		}
	}
	
	.service_wenti .qa_box ul li .left {
		width: 80%;
		float: left;
	}
	
	.service_wenti .qa_box ul li .right {
		display: inline-block;
		float: right;
		padding-top: 38px;
	}
	
	.service_wenti .qa_box ul li .right a {
		display: inline-block;
		line-height: 32px;
		border: 1px solid #e8e8e8;
		color: #999999;
		font-size: 14px;
		padding: 0 20px;
		background: #fff;
	}
	
	.service_wenti .qa_box ul li .right a:hover {
		background: #f18a22;
		border-color: #f18a22;
		color: #fff;
	}
	
	@media only screen and (max-width:768px) {
		.service_wenti .qa_box ul li .left {
			width: 100%;
		}
		.service_wenti .qa_box ul li .right {
			float: none;
			padding-top: 3%;
		}
	}
	
	.home_con .home_pro .left a img,
	.home_con .home_pro .right a img,
	.home_solutions .text_con .img img,
	.home_case .right span img,
	.home_news .con_box .left span img,
	.pro_box ul li .img img,
	.jiejuefangan_list ul li .img img,
	.case_box ul li .img img,
	.case_list ul li .img img,
	.service_linian ul li .img img,
	.about_jianjie .right ol li .img img,
	.about_wenhua ol li .img em img,
	.pro_list ul li .img img,
	.about_tuandui ol li .img img,
	.about_fuli .ul_list li .img img,
	.solut_bottom ol li .img img {
		width: 100%;
		transition: all 1s;
		-moz-transition: all 1s;
		-o-transition: all 1s;
		-webkit-transition: all 1s;
		-ms-transition: all 1s;
	}
	
	.home_con .home_pro .left a img:hover,
	.home_con .home_pro .right a img:hover,
	.home_solutions .text_con .img:hover img,
	.home_case .right span img:hover,
	.home_news .con_box .left span img:hover,
	.pro_box ul li .img img:hover,
	.jiejuefangan_list ul li .img img:hover,
	.case_box ul li .img img:hover,
	.case_list ul li .img img:hover,
	.service_linian ul li .img img:hover,
	.about_jianjie .right ol li .img img:hover,
	/*.about_wenhua ol li .img em:hover img,*/
	
	.pro_list ul li .img img:hover,
	.about_tuandui ol li .img img:hover,
	.about_fuli .ul_list li .img img:hover,
	.solut_bottom ol li .img img:hover {
		transform: scale(1.1);
		-moz-transform: scale(1.1);
		-o-transform: scale(1.1);
		-webkit-transform: scale(1.1);
		-ms-transform: scale(1.1);
	}
	
	#focus_Box {
		float: right;
		position: relative;
		/*width: 540px;*/
		/*height: 393px;*/
	}
	
	#focus_Box ul {
		position: relative;
		width: 540px;
		/*height: 393px;*/
	}
	
	#focus_Box li {
		z-index: 0;
		position: absolute;		
		background: #787878;		
		top: 0;
		cursor: pointer;
		left: 0;
	}
	
	#focus_Box li img {
		width: 100%;
		height: 100%;
		vertical-align: top;
	}
	
	#focus_Box li p {
		display: none;
		padding: 15px 15px 0;
		text-align: center;
		color: #2d2d2d;
		text-overflow: ellipsis;
		overflow: hidden;
		white-space: nowrap;
	}
	
	#focus_Box .prev,
	#focus_Box .next {
		display: block;
		z-index: 100;
		overflow: hidden;
		cursor: pointer;
		position: absolute;
		width: 31px;
		height: 58px;
		top: 90px;
	}
	
	#focus_Box .prev {
		background: url(../img/p_left.jpg) no-repeat center center;
		left: -59px;
	}
	
	#focus_Box .next {
		background: url(../img/p_right.jpg) no-repeat center center;
		right: -59px;
	}
	
	.iphon_honor {
		display: none;
	}
	
	.iphon_honor img {
		width: 98%;
	}
	
	.iphon_honor .slick-prev {
		background: url(../img/honor-r.png) no-repeat center center;
		left: 0;
	}
	
	.iphon_honor .slick-next {
		background: url(../img/honor-l.png) no-repeat center center;
		right: 1%;
	}
	
	.iphon_honor .slick-prev,
	.iphon_honor .slick-next {
		border: none;
		background-size: 100% 100%;
	}
	
	@media (max-width: 768px) {
		.about_honor .left {
			width: 100%;
			float: none;
		}
		#focus_Box {
			float: none;
			margin: 5% auto 0;
		}
	}
	
	@media only screen and (max-width:640px) {
		#focus_Box .prev {
			left: -48px;
		}
		#focus_Box .next {
			right: -48px;
		}
	}
	
	@media (max-width: 480px) {
		#focus_Box {
			display: none;
		}
		.iphon_honor {
			display: block;
			width: 100.8%;
		}
	}
	
	@media (max-width: 414px) {
		.iphon_honor {
			width: 100.6%;
		}
	}
	
	@media (max-width: 375px) {
		.iphon_honor {
			width: 100.4%;
		}
	}
	/**2017-12-25**/
	
	.case_box .top_title {
		background: url(../img/gcase_bg.jpg) no-repeat center center / cover;
		min-height: 266px;
		padding-top: 75px;
	}
	
	.case_box .top_title h3 {
		text-align: center;
		color: #fff;
		font-size: 28px;
		padding-bottom: 16px;
		position: relative;
	}
	
	.case_box .top_title h3:before {
		content: "";
		position: absolute;
		left: 50%;
		margin-left: -16px;
		bottom: 0;
		width: 32px;
		height: 1px;
		background: #fff;
	}
	
	.case_box .top_title p {
		text-align: center;
		width: 640px;
		margin: 12px auto 0;
		color: #ffffff;
		font-size: 15px;
		line-height: 25px;
	}
	
	.case_box ul {
		margin-top: 2%;
	}
	
	@media (max-width: 640px) {
		.case_box .top_title {
			min-height: auto;
			padding-top: 5%;
			padding-bottom: 5%;
		}
		.case_box .top_title h3 {
			font-size: 22px;
			padding-bottom: 16px;
		}
		.case_box .top_title p {
			width: 100%;
			font-size: 14px;
			line-height: 24px;
			padding: 0 10px;
		}
	}
	
	@media (max-width: 480px) {
		.case_box .top_title h3 {
			font-size: 16px;
			padding-bottom: 8px;
		}
	}
	/**2017-12-25**/
	
	.title3 {
		text-align: center;
		color: #555555;
		font-size: 28px;
		font-weight: normal;
		padding-bottom: 15px;
		position: relative;
	}
	
	.title3:before {
		content: "";
		position: absolute;
		left: 50%;
		bottom: 0;
		margin-left: -20px;
		width: 40px;
		height: 3px;
		background: #efefef;
	}
	
	.gaishu {
		padding-top: 50px;
	}
	
	.gaishu .box {
		margin-top: 3%;
		border-bottom: 1px solid #e7e7e7;
		padding-bottom: 60px;
		padding-left: 8%;
		padding-right: 8%;
	}
	
	.gaishu .box .text {
		padding-top: 6%;
		float: left;
		width: 47%;
		color: #666666;
		font-size: 16px;
		line-height: 26px;
	}
	
	.gaishu .box .img {
		float: right;
		width: 40%;
		line-height: 0;
	}
	
	.jiazhidian {
		padding-top: 50px;
	}
	
	.jiazhidian ol {
		margin-top: 3%;
		border-bottom: 1px solid #e7e7e7;
		padding-bottom: 60px;
	}
	
	.jiazhidian ol li {
		float: left;
		width: 23.5%;
		background: #f6f6f6;
		text-align: center;
		padding: 5% 3%;
		margin-left: 2%;
	}
	
	.jiazhidian ol li:first-child {
		margin-left: 0;
	}
	
	.jiazhidian ol li .img {
		width: 46%;
		margin: 0 auto;
		line-height: 0;
		display: block;
	}
	
	.jiazhidian ol li p {
		margin-top: 15px;
		color: #666666;
		font-size: 16px;
		line-height: 26px;
		height: 52px;
		overflow: hidden;
	}
	
	.jiejuefangan_list {
		padding-top: 20px;
	}
	
	.jiejuefangan_list ul {
		margin-top: 3%;
	}
	
	@media (max-width: 1280px) {
		.gaishu .box .text {
			padding-top: 2%;
		}
	}
	
	@media (max-width: 1024px) {
		.gaishu .box {
			padding-left: 0;
			padding-right: 0;
		}
		.gaishu .box .text {
			padding-top: 0;
			font-size: 14px;
			line-height: 24px;
		}
		.jiazhidian ol li {
			padding-left: 2%;
			padding-right: 2%;
		}
		.jiazhidian ol li p {
			font-size: 14px;
			line-height: 24px;
		}
	}
	
	@media (max-width: 991px) {
		.gaishu,
		.jiazhidian,
		.jiejuefangan_list {
			padding-top: 5%;
		}
		.gaishu .box,
		.jiazhidian ol {
			padding-bottom: 6%;
		}
	}
	
	@media (max-width: 768px) {
		.gaishu .box .text {
			width: 100%;
		}
		.gaishu .box .img {
			width: 100%;
			margin-top: 4%;
		}
		.jiazhidian ol li {
			width: 49.5%;
			margin-left: 0;
			margin-bottom: 1%;
			padding-left: 10px;
			padding-right: 10px;
		}
		.jiazhidian ol li:nth-child(2n) {
			float: right;
		}
	}
	
	@media (max-width: 640px) {
		.title3 {
			font-size: 22px;
		}
	}
	
	@media (max-width: 414px) {
		.title3 {
			font-size: 17px;
			padding-bottom: 12px;
		}
		.gaishu .box {
			margin-top: 4%;
		}
		.jiazhidian ol,
		.jiejuefangan_list ul {
			margin-top: 5%;
		}
		.jiazhidian ol li p {
			margin-top: 6%;
			line-height: 22px;
			height: 66px;
			font-size: 13px;
		}
	}
	
	.fangan_banner {
		background: url(../img/solutions_bg.jpg) no-repeat center center;
		min-height: 700px;
		text-align: center;
		padding-top: 325px;
	}
	
	.fangan_banner h1 {
		color: #ffffff;
		font-size: 40px;
	}
	
	.fangan_banner .name {
		width: 1008px;
		margin: 2.5% auto 0;
		color: #fff;
		font-size: 24px;
		line-height: 60px;
	}
	
	@media (max-width:1024px) {
		.fangan_banner {
			background-size: 100% 100%;
			min-height: 450px;
			padding-top: 215px;
		}
		.fangan_banner .name {
			width: 100%;
		}
	}
	
	@media (max-width:768px) {
		.fangan_banner {
			background-size: 100% 100%;
			min-height: 340px;
			padding-top: 145px;
		}
		.fangan_banner .name {
			font-size: 14px;
			line-height: 24px;
		}
	}
	
	@media (max-width:640px) {
		.fangan_banner {
			min-height: auto;
			padding: 12% 0;
		}
		.fangan_banner h1 {
			font-size: 24px;
		}
	}
	
	.zeren_box {
		padding-top: 100px;
	}
	
	.zeren_box .gaishu:nth-child(2n) .box .text {
		float: right;
	}
	
	.zeren_box .gaishu:nth-child(2n) .box .img {
		float: left;
	}
	
	@media (max-width: 1024px) {
		.zeren_box {
			padding-top: 0;
		}
	}
	/**2017-12-27**/
	
	.dengjibiao {
		padding: 93px 0 70px;
	}
	
	.dengjibiao .top {
		border-bottom: 1px solid #ededed;
		line-height: 70px;
	}
	
	.dengjibiao .top h1 {
		font-weight: normal;
		color: #000000;
		font-size: 18px;
	}
	
	.dengjibiao ol {
		margin-bottom: 50px;
		padding-left: 402px;
	}
	
	.dengjibiao ol li {
		float: left;
		width: 100%;
		margin-top: 20px;
	}
	
	.dengjibiao ol li .bt {
		float: left;
		width: 150px;
		text-align: right;
		display: block;
		color: #000000;
		font-size: 15px;
		line-height: 24px;
	}
	
	.dengjibiao ol li .bt i {
		font-style: normal;
		color: #ef0101;
		display: inline-block;
		margin-right: 3px;
	}
	
	.dengjibiao ol li .text {
		float: left;
		margin-left: 48px;
		line-height: 24px;
	}
	
	.dengjibiao ol li .text input {
		width: 198px;
		height: 24px;
		border: 1px solid #e3e3e3;
		line-height: 24px;
		-webkit-appearance: none;
		padding: 0 5px;
		border-radius: 0;
		font-size: 14px;
	}
	
	.dengjibiao ol li .text span {
		display: block;
		float: left;
		color: #000000;
		font-size: 15px;
		padding-left: 18px;
		margin-right: 16px;
		cursor: pointer;
		position: relative;
	}
	
	.dengjibiao ol li .text span:before {
		content: "";
		position: absolute;
		left: 0;
		top: 6px;
		width: 8px;
		height: 8px;
		border: 2px solid #e3e3e3;
		border-radius: 50px;
	}
	
	.dengjibiao ol li .text span.cur:before {
		background: #033e88;
		border-color: #033e88;
	}
	
	.dengjibiao ol li .text .qt {
		margin-top: 10px;
		display: block;
		float: left;
	}
	
	.dengjibiao ol li .text .cbox {
		width: 100px;
		height: 24px;
		position: relative;
	}
	
	.dengjibiao ol li .text .cbox .ch {
		font-style: normal;
		display: block;
		width: 100px;
		height: 24px;
		line-height: 22px;
		border: 1px solid #e3e3e3;
		padding: 0 5px;
		color: #000000;
		overflow: hidden;
		border-radius: 0;
		cursor: pointer;
		position: relative;
	}
	
	.dengjibiao ol li .text .cbox .ch:before {
		content: "";
		position: absolute;
		right: 0px;
		top: 0px;
		width: 24px;
		height: 24px;
		background: url(../img/djb_icon.jpg) no-repeat center center;
	}
	
	.dengjibiao ol li .text .cbox .con {
		display: none;
		z-index: 999;
		border: 1px solid #e3e3e3;
		position: absolute;
		left: 0;
		top: 100%;
		width: 100%;
		background: #FFFFFF;
		padding: 5px;
	}
	
	.dengjibiao ol li .text .cbox .con a {
		text-overflow: ellipsis;
		overflow: hidden;
		white-space: nowrap;
		color: #999;
		font-size: 14px;
		display: block;
		line-height: 26px;
	}
	
	.dengjibiao ol li .text .cbox .con a:hover {
		color: #666;
	}
	
	.dengjibiao .btn {
		text-align: center;
	}
	
	.dengjibiao .btn button {
		display: block;
		width: 140px;
		height: 38px;
		line-height: 38px;
		border-radius: 50px;
		margin: 0 auto;
		background: #42699e;
		color: #ffffff;
		font-size: 15px;
		border: 0;
	}
	
	@media (max-width: 1280px) {
		.dengjibiao ol {
			padding-left: 328px;
		}
	}
	
	@media (max-width: 1024px) {
		.dengjibiao {
			padding: 0 0 6%;
		}
		.dengjibiao ol {
			padding-left: 30%;
		}
	}
	
	@media (max-width: 768px) {
		.dengjibiao ol {
			padding-left: 0;
			margin-bottom: 5%;
		}
		.dengjibiao ol li {
			margin-top: 3%;
		}
		.dengjibiao ol li .bt {
			float: none;
			width: 100%;
			text-align: left;
			margin-bottom: 5px;
		}
		.dengjibiao ol li .text {
			float: none;
			width: 100%;
			margin-left: 0;
		}
		.dengjibiao ol li .text input {
			width: 100%;
			height: 34px;
			line-height: 34px;
		}
		.dengjibiao ol li .text .qt {
			line-height: 34px;
		}
		.dengjibiao ol li .text .qt span:before {
			top: 10px;
		}
		.dengjibiao ol li .text .qt input {
			width: 217px;
		}
		.dengjibiao ol li .text .cbox {
			height: 34px;
		}
		.dengjibiao ol li .text .cbox .ch {
			height: 34px;
			line-height: 32px;
		}
		.dengjibiao ol li .text .cbox .ch:before {
			width: 34px;
			height: 34px;
			background: url(../img/djb_icon.jpg) no-repeat center center #ededed;
		}
	}
	
	.about_banner .title_box {
		background: url(../img/top_bg4.png) no-repeat center center / cover;
		width: 969px;
		position: relative;
		margin: 110px auto 0;
		text-align: center;
		padding-left: 184.5px;
	}
	
	.about_banner .title_box a {
		display: block;
		height: 109px;
		float: left;
		width: 150px;
		border-right: 1px solid #659bdb;
		padding-top: 26px;
	}
	
	.about_banner .title_box a span {
		display: block;
		height: 30px;
	}
	
	.about_banner .title_box a em {
		font-style: normal;
		color: #ffffff;
		font-size: 14px;
		margin-top: 8px;
		display: block;
	}
	
	.about_banner .title_box a:last-child {
		border-color: rgba(0, 0, 0, 0);
	}
	
	.about_banner .title_box a:hover,
	.about_banner .title_box a.cur {
		background: #124490;
	}
	
	@media only screen and (max-width:1024px) {
		.about_banner {
			padding-top: 150px;
		}
		.about_banner .title_box {
			margin-top: 6.5%;
		}
	}
	
	@media only screen and (max-width:991px) {
		.about_banner .title_box {
			width: 100%;
		}
	}
	
	@media only screen and (max-width:768px) {
		.about_banner {
			padding-top: 15%;
		}
		.about_banner .title_box {
			padding-left: 0;
		}
		.about_banner .title_box a {
			width: 25%;
		}
	}
	
	@media only screen and (max-width:480px) {
		.about_banner .title_box a {
			height: auto;
			padding-top: 3%;
			padding-bottom: 3%;
		}
		.about_banner .title_box a span {
			width: 22%;
			height: auto;
		}
		.about_banner .title_box a em {
			margin-top: 5px;
		}
	}
	
	@media only screen and (max-width:414px) {
		.about_banner .title_box a em {
			font-size: 12px;
		}
	}
	
	.more_btn a {
		margin-top: 50px;
		float: right;
		display: inline-block;
		padding: 0 30px;
		height: 44px;
		line-height: 44px;
		background: #043e88;
		border-radius: 50px;
		text-align: center;
		color: #fff;
		font-size: 16px;
	}
	
	@media only screen and (max-width:768px) {
		.more_btn {
			text-align: center;
		}
		.more_btn a {
			margin-top: 5%;
			float: none;
		}
	}
	
	.ntitle1 {
		text-align: center;
		color: #555555;
		font-size: 28px;
		font-weight: normal;
		padding-bottom: 15px;
		position: relative;
		padding-top: 50px;
		margin-bottom: 2%;
	}
	
	.ntitle1:before {
		content: "";
		position: absolute;
		left: 50%;
		bottom: 0;
		margin-left: -20px;
		width: 40px;
		height: 3px;
		background: #efefef;
	}
	
	.proshow_banner .banzib .button {
		display: inline-block;
		width: 145px;
		height: 46px;
		border: 1px solid #fff;
		background: transparent;
		color: #fff;
		font-size: 16px;
		text-align: center;
		line-height: 46px;
		margin-left: 1%;
		float: left;
		margin-top: 15px;
	}
	
	.proshow_banner .banzib .button img {
		height: 19px;
		margin-top: -4px;
		margin-right: 8px;
	}
	
	.solutions_banner .container a img {
		height: 19px;
		margin-right: 16px;
	}
	
	.banner_pro {
		position: relative;
	}
	
	.banner_pro .title_box {
		position: absolute;
		left: 50%;
		bottom: 0px;
		transform: translateX(-50%);
	}
	
	.case_banner2 {
		position: relative;
	}
	
	.case_banner2 .title_box {
		position: absolute;
		left: 50%;
		bottom: 0px;
		transform: translateX(-50%);
	}
	
	.case_list .cpage-1 li:first-child {
		width: 66%;
		margin-bottom: 0;
	}
	
	.case_list .cpage-1 li:nth-child(2),
	.case_list .cpage-1 li:nth-child(5),
	.case_list .cpage-1 li:nth-child(8) {
		margin-right: 0;
	}
	
	.case_list .cpage-1 li:nth-child(3),
	.case_list .cpage-1 li:nth-child(6) {
		margin-right: 2%;
	}
	
	@media only screen and (max-width:480px) {
		.case_list .cpage-1 li:first-child {
			width: 100%;
			margin-bottom: 2%;
		}
	}
	
	.case_banner .container .name {
		text-align: center;
		color: #fff;
		font-size: 16px;
		width: 750px;
		margin: 10px auto 0;
		line-height: 24px;
	}
	
	@media (max-width: 768px) {
		.case_banner .container .name {
			width: 100%;
			font-size: 14px;
			line-height: 24px;
		}
	}
	
	.return_top_bottom {
		display: none;
	}
	
	@media (max-width: 640px) {
		.footer {
			margin-bottom: 78px;
		}
		.return_top_bottom {
			display: block;
			right: auto;
			top: auto;
			bottom: 0;
			width: 100%;
		}
		.return_top_bottom a {
			float: left;
			margin-bottom: 0;
			width: 33.33333333%;
			text-align: center;
			border-right: 1px solid #032554;
		}
		.return_top_bottom a:last-child {
			border-right: none;
		}
	}
	
	@media (max-width: 480px) {
		.home_news .ol_list a {
			width: 23.5%;
			border-radius: 0;
			line-height: 34px;
		}
		.footer {
			margin-bottom: 55px;
		}
		.return_top_bottom {
			height: 55px;
		}
		.return_top_bottom a img {
			width: 61px;
			height: 55px;
		}
	}
	
	.table {
		padding: 60px 0;
	}
	
	.table h3 {
		text-align: center;
		color: #666666;
		font-size: 30px;
	}
	
	.table span {
		text-align: center;
		display: block;
		color: #aaaaaa;
		font-size: 14px;
		margin: 12px 0 15px;
		text-transform: uppercase;
		font-family: arial;
	}
	
	.table .text strong {
		font-size: 16px;
		margin-top: 2%;
		display: block;
	}
	
	.table table {
		margin-top: 40px;
	}
	
	.table table tr {
		background: #f7f7f7;
	}
	
	.table table tr th {
		background: #093c8a;
		color: #fff;
		font-size: 18px;
		font-weight: normal;
		padding: 1.5% 0;
	}
	
	.table table tr:nth-child(2n) {
		background: #fff;
	}
	
	.table table tr td {
		text-align: center;
		padding: 1.5% 0;
	}
	
	.tables_con .box .left1 span {
		display: block;
		color: #aaaaaa;
		font-size: 14px;
		margin: 12px 0 15px;
		text-transform: uppercase;
		font-family: arial;
	}
	
	.tables_con .box .left1 .text {
		color: #666666;
		font-size: 16px;
		line-height: 28px;
	}
	
	.tables_con .box .left1 h3 {
		color: #1f1f1f;
		font-size: 30px;
		font-weight: normal;
	}
	
	.tables_con .box span {
		display: block;
		color: #aaaaaa;
		font-size: 14px;
		margin: 12px 0 15px;
		text-transform: uppercase;
		font-family: arial;
	}
	
	.tables_con .box .text {
		color: #666666;
		font-size: 16px;
		line-height: 28px;
	}
	
	.tables_con .box h3 {
		color: #1f1f1f;
		font-size: 30px;
		font-weight: normal;
	}
	
	.tqiye {
		background: #666666;
		width: 100%;
		line-height: 40px;
		text-align: center;
		color: #fff;
		font-size: 14px;
	}
	
	.iphon_honor .tqiye {
		width: 98%;
	}
	
	.cpcs_box .cpcs_img th,
	.cpcs_box .cpcs_img td {
		padding: 15px;
	}
	
	.footer .footer_nav .right .dh1 {
		margin-top: 18px;
		color: #ffffff;
		font-size: 32px;
		font-family: arial;
		font-weight: bold;
		background: url(../img/dh1.png) no-repeat left center;
		padding-left: 42px;
	}
	
	.fanye {
		text-align: center;
	}
	
	.fanye ul li {
		display: inline-block;
		margin-right: 0;
		float: none;
		width: auto;
		height: 55px;
		background-color: #EFEFEF;
		text-align: center;
		line-height: 55px;
		font-size: 16px;
	}
	
	.fanye ul li:first-child {
		width: auto;
	}
	
	.fanye ul li:last-child {
		margin-left: 3px;
	}
	
	.fanye ul li a,
	.fanye ul li span {
		display: block;
		padding: 0 25px;
	}
	
	.fanye ul li:hover a {
		color: #ffffff;
		background-color: #1C6AC3;
	}
	
	.fanye ul li.thisclass {
		color: #ffffff;
		background-color: #1C6AC3;
	}
	
	.news_box .fanye {
		text-align: center;
	}
	
	.news_box .fanye ul li {
		display: inline-block;
		margin-right: 0;
		float: none;
		width: auto;
		height: 55px;
		background-color: #EFEFEF;
		text-align: center;
		line-height: 55px;
		font-size: 16px;
	}
	
	.news_box .fanye ul li:first-child {
		width: auto;
	}
	
	.news_box .fanye ul li:last-child {
		margin-left: 3px;
	}
	
	.news_box .fanye ul li a,
	.news_box .fanye ul li span {
		display: block;
		padding: 0 25px;
	}
	
	.news_box .fanye ul li:hover a {
		color: #ffffff;
		background-color: #1C6AC3;
	}
	
	.news_box .fanye ul li.thisclass a {
		color: #ffffff;
		background-color: #1C6AC3;
	}
	
	@media only screen and (max-width: 640px) {
		.fanye ul li {
			display: inline-block;
			margin-right: 0;
			float: none;
			width: auto;
			height: 35px;
			background-color: #EFEFEF;
			text-align: center;
			line-height: 35px;
			font-size: 14px;
		}
		.fanye ul li a {
			display: block;
			padding: 0 15px;
		}
		.news_box .fanye ul li {
			display: inline-block;
			margin-right: 0;
			float: none;
			width: auto;
			height: 35px;
			background-color: #EFEFEF;
			text-align: center;
			line-height: 35px;
			font-size: 14px;
		}
		.news_box .fanye ul li a {
			display: block;
			padding: 0 15px;
		}
	}
	
	.index_l {
		width: 30%;
	}
	
	.index_r {
		width: 68%;
	}
	
	.index_r ul {
		width: 45%;
		float: left;
		padding-right: 30px;
	}
	
	.navbox ul li h2 {
		font-weight: bold;
		font-size: 16px;
		color: #333;
		overflow: hidden;
		line-height: 30px;
	}
	
	.navbox ul li h2 span {
		font-size: 13px;
		color: #999;
		font-weight: normal;
		margin-bottom: -19px;
		padding: 0;
		/*line-height: 26px;*/
		margin-right: 0;
		background: none;
	}
	
	.navbox ul li img {
		width: 100%;
	}
	
	.navbox ul li div {
		width: 100%;
		line-height: 30px;
	}
	
	.navbox ul li div span {
		height: auto;
		margin-right: 15px;
		font-weight: bold;
	}
	
	.navbox ul li div span a {
		font-weight: bold;
		color: #333;
		font-size: 12px;
		padding-top: 5px;
		padding-bottom: 4px;
	}
	
	.navbox ul li div p {
		height: auto;
		overflow: hidden;
	}
	
	.navbox ul li div p a {
		font-size: 12px;
		color: #666;
		margin-right: 7px;
		position: relative;
		top: 2px;
		padding: 4px 0;
	}
	
	.navbox ul li div p a:hover {
		color: #004A9F;
	}